Sha256: 4638eb18dfb048ef756747255196b92aac67e0034d8e0db8462988293a73f239

Contents?: true

Size: 1.14 KB

Versions: 12

Compression:

Stored size: 1.14 KB

Contents

%table.effective-datatable{:id => "#{datatable.to_param}-table", :class => ('table ' + table_class.to_s), :data => {'effective-datatables-table' => style, 'source' => effective_datatables.datatable_path(datatable, {:format => 'json'}.merge(:attributes => datatable.attributes)), 'filter' => datatable_filter(datatable, filterable), 'non-sortable' => datatable_non_sortable(datatable, sortable), 'non-visible' => datatable_non_visible(datatable), 'widths' => datatable_widths(datatable), 'default-order' => datatable_default_order(datatable), 'column-classes' => datatable_column_classes(datatable)}}
  %thead
    - max_depth = datatable.table_columns.map { |_, opts| opts[:th][:depth].to_i rescue 0 }.max
    - [*0..max_depth].each do |depth|
      %tr
        - table_columns = datatable.table_columns.select { |_, opts| (opts[:th][:depth] || 0 rescue 0) == depth }
        - table_columns.each do |name, opts|
          %th{(opts[:th] || {}).merge({:title => opts[:label] || name})}= opts[:label] || name
          - (opts[:append_th] || []).each do |faux_col|
            %th{(faux_col[:th] || {}).merge({:title => faux_col[:label]})}= faux_col[:label]
  %tbody

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
effective_datatables-1.2.4 app/views/effective/datatables/_datatable.html.haml
effective_datatables-1.2.3 app/views/effective/datatables/_datatable.html.haml
effective_datatables-1.2.2 app/views/effective/datatables/_datatable.html.haml
effective_datatables-1.2.1 app/views/effective/datatables/_datatable.html.haml
effective_datatables-1.2.0 app/views/effective/datatables/_datatable.html.haml
effective_datatables-1.1.6 app/views/effective/datatables/_datatable.html.haml
effective_datatables-1.1.5 app/views/effective/datatables/_datatable.html.haml
effective_datatables-1.1.4 app/views/effective/datatables/_datatable.html.haml
effective_datatables-1.1.3 app/views/effective/datatables/_datatable.html.haml
effective_datatables-1.1.2 app/views/effective/datatables/_datatable.html.haml
effective_datatables-1.1.1 app/views/effective/datatables/_datatable.html.haml
effective_datatables-1.1.0 app/views/effective/datatables/_datatable.html.haml