Sha256: f552933f3cfec93e465e21d8273df1c12a92f2d98bf7de2b681880dcbd695227
Contents?: true
Size: 1.34 KB
Versions: 3
Compression:
Stored size: 1.34 KB
Contents
module TableGo module Renderers class HtmlRenderer include RendererBase def render_template if table.render_rows_only table_rows else content_tag(:table, table.table_html) do concat(content_tag(:caption, table.title)) if table.title concat(table_head) unless table.without_header concat(table_body) end end end def table_head content_tag(:thead) do content_tag(:tr) do table.columns.each do |column| concat(content_tag(:th, label_for_column(column), html_options_for_header(column))) end end end end def table_body content_tag(:tbody) do table_rows end end def table_rows table.collection.each do |record| tr = content_tag(:tr, html_options_for_row(record)) do table.columns.each do |column| value = value_from_record_by_column(record, column) concat(content_tag(:td, apply_formatter(record, column, value), html_options_for_cell(record, column, value))) end end concat(tr) end end def table_foot content_tag(:tfoot) do content_tag(:tr) do end end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
table_go-0.2.6 | lib/table_go/renderers/html_renderer.rb |
table_go-0.2.5 | lib/table_go/renderers/html_renderer.rb |
table_go-0.2.4 | lib/table_go/renderers/html_renderer.rb |