Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my code

@format_text = @workbook.add_format(:bold =>false)

I get following error

undefined method `font' for {:bold =>false}:Hash in 
gems/spreadsheet-0.6.4/lib/spreadsheet/excel/writer/workbook.rb:352

when i try to export data into the XLS i am using following gems

spreadsheet --version 0.6.4
spreadsheet-excel --version 0.3.5.1

My problem is when i use same code with same gems it works fine on my local application but same gives error on my heroku server

Regards,

Salil

share|improve this question

1 Answer

You need to pass Spreadsheet::Format instead of hash

format = Spreadsheet::Format.new
format.font = Spreadsheet::Font.new('Arial', :bold => true)
@workbook.add_format(format)    
share|improve this answer
thanx a million man it works, now i am trying to set background. – Salil Dec 4 '10 at 12:43
do you know how to set background of the cell in xls?i want to set 'green' and 'black' – Salil Dec 4 '10 at 12:44
Spreadsheet::Format.new :pattern_fg_color => :red, :pattern => 1 – Sigurd Dec 4 '10 at 22:13
gr8 thanx you save my day or two.............:) – Salil Dec 8 '10 at 4:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.