Module: EasyDataTables::TableHelper

Defined in:
app/helpers/easy_data_tables/table_helper.rb

Overview

Creates and exposes the helper method

Instance Method Summary collapse

Instance Method Details

#easy_data_table(columns, label, grouping) ⇒ Object



6
7
8
9
10
11
12
13
# File 'app/helpers/easy_data_tables/table_helper.rb', line 6

def easy_data_table(columns, label, grouping)
  data_table = DataTable.new(
    columns,
    label,
    grouping
  )
  render 'easy_data_tables/data_table', data_table: data_table
end