Class: Glib::JsonUi::ViewBuilder::Panels::Table

Inherits:
View show all
Defined in:
app/helpers/glib/json_ui/view_builder/panels.rb

Instance Attribute Summary

Attributes inherited from JsonUiElement

#json, #page

Instance Method Summary collapse

Methods inherited from View

component_name

Methods inherited from JsonUiElement

#initialize, #props

Constructor Details

This class inherits a constructor from Glib::JsonUi::JsonUiElement

Instance Method Details

#firstSection(block) ⇒ Object



243
244
245
246
247
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 243

def firstSection(block)
  json.sections [1] do
    block.call page.table_section_builder
  end
end

#sections(blocks) ⇒ Object



249
250
251
252
253
254
255
256
257
# File 'app/helpers/glib/json_ui/view_builder/panels.rb', line 249

def sections(blocks)
  json.sections do
    blocks.each do |block|
      json.child! do
        block.call page.table_section_builder
      end
    end
  end
end