Module: Katalyst::Tables::Backend

Extended by:
ActiveSupport::Concern
Included in:
Collection::Sorting::Sort
Defined in:
app/controllers/concerns/katalyst/tables/backend.rb

Overview

Configuration for controllers to specify which TableComponent should be used in associated views.

Instance Method Summary collapse

Instance Method Details

#default_summary_table_componentObject

Default summary table component for this controller



67
68
69
# File 'app/controllers/concerns/katalyst/tables/backend.rb', line 67

def default_summary_table_component
  self.class._default_summary_table_component
end

#default_table_componentObject

Default table component for this controller



52
53
54
# File 'app/controllers/concerns/katalyst/tables/backend.rb', line 52

def default_table_component
  self.class._default_table_component
end

#default_table_pagination_componentObject

Default table pagination component for this controller



57
58
59
# File 'app/controllers/concerns/katalyst/tables/backend.rb', line 57

def default_table_pagination_component
  self.class._default_table_pagination_component
end

#default_table_query_componentObject

Default table query component for this controller



62
63
64
# File 'app/controllers/concerns/katalyst/tables/backend.rb', line 62

def default_table_query_component
  self.class._default_table_query_component
end