Class: Trestle::Table::ActionsColumn
- Inherits:
-
Object
- Object
- Trestle::Table::ActionsColumn
- Defined in:
- lib/trestle/table/actions_column.rb
Defined Under Namespace
Classes: ActionsBuilder, Renderer
Instance Attribute Summary collapse
-
#block ⇒ Object
readonly
Returns the value of attribute block.
-
#table ⇒ Object
readonly
Returns the value of attribute table.
Instance Method Summary collapse
- #default_actions ⇒ Object
-
#initialize(table, &block) ⇒ ActionsColumn
constructor
A new instance of ActionsColumn.
- #renderer(template) ⇒ Object
Constructor Details
#initialize(table, &block) ⇒ ActionsColumn
6 7 8 9 |
# File 'lib/trestle/table/actions_column.rb', line 6 def initialize(table, &block) @table = table @block = block_given? ? block : default_actions end |
Instance Attribute Details
#block ⇒ Object (readonly)
Returns the value of attribute block.
4 5 6 |
# File 'lib/trestle/table/actions_column.rb', line 4 def block @block end |
#table ⇒ Object (readonly)
Returns the value of attribute table.
4 5 6 |
# File 'lib/trestle/table/actions_column.rb', line 4 def table @table end |
Instance Method Details
#default_actions ⇒ Object
15 16 17 18 19 |
# File 'lib/trestle/table/actions_column.rb', line 15 def default_actions ->(action) do action.delete end end |
#renderer(template) ⇒ Object
11 12 13 |
# File 'lib/trestle/table/actions_column.rb', line 11 def renderer(template) Renderer.new(self, template) end |