Class: Glib::JsonUi::ViewBuilder::Panels::BulkEdit
- Inherits:
-
View
- Object
- JsonUiElement
- View
- Glib::JsonUi::ViewBuilder::Panels::BulkEdit
- Defined in:
- app/helpers/glib/json_ui/view_builder/panels.rb
Overview
deprecated
Instance Attribute Summary
Attributes inherited from JsonUiElement
Instance Method Summary collapse
Methods inherited from View
Methods inherited from JsonUiElement
Constructor Details
This class inherits a constructor from Glib::JsonUi::JsonUiElement
Instance Method Details
#firstSection(block) ⇒ Object
431 432 433 434 435 |
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 431 def firstSection(block) json.sections [1] do block.call page.table_section_builder end end |
#sections(blocks) ⇒ Object
437 438 439 440 441 442 443 444 445 |
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 437 def sections(blocks) json.sections do blocks.each do |block| json.child! do block.call page.table_section_builder end end end end |