tabletastic icon indicating copy to clipboard operation
tabletastic copied to clipboard

Add possibility to not output thead at all

Open ares opened this issue 13 years ago • 0 comments

Sometimes it's good to have a small table without any thead. Right now I can do only something like

table_for connections do |t|
  t.data do
    t.cell(:created_at, :heading => nil
    t.cell(:status, :heading => nil
  end
end

I would prefer to have some option at table_for that would disable tbody generation at all.

ares avatar Jun 24 '11 15:06 ares