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
426 427 428 429 430 |
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 426 def firstSection(block) json.sections [1] do block.call page.table_section_builder end end |
#sections(blocks) ⇒ Object
432 433 434 435 436 437 438 439 440 |
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 432 def sections(blocks) json.sections do blocks.each do |block| json.child! do block.call page.table_section_builder end end end end |