I"m having no luck formatting a table in a PDF served from a Rails action using Prawn.

Here's the code, but it doesn't apply any of the formatting:

p = Prawn::Document.new(:page_size => "A4")
data = []
data << ["alpha", "brava", "charlie"]
data << ["delta", "echo", "foxtrot"]
p.table(data) do
   row(0).style(:background_color => 'dddddd', :size => 9, :align => :center, :font_style => :bold)
   cells[0,0].background_color = '999999'        
end
p.render

Any clues?

link|improve this question

25% accept rate
which rails version are you using? – Harry Joy Jan 6 '11 at 13:25
feedback

1 Answer

up vote 2 down vote accepted

Which version of prawn are you using? I had all sorts of issues with things not working as expected, then I upgraded to prawn 0.11.1.pre and it sorted it all.

See Prawn Tables: Block is not exectuting which is pretty much the same question.

link|improve this answer
Great, upgrading does the trick. – Eddie Johnston Jan 10 '11 at 11:41
feedback

Your Answer

 
or
required, but never shown

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