Class: Dill::Table

Inherits:
Widget show all
Defined in:
lib/dill/widgets/table.rb

Defined Under Namespace

Classes: Columns, Row

Constant Summary

Constants included from Dill

VERSION

Instance Attribute Summary

Attributes inherited from Widget

#root

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Widget

action, #class?, #classes, #click, filter, filter?, find_all_in, find_in, #has_action?, #hover, #html, #id, #initialize, not_present_in?, present_in?, root, selector, #text, #to_cell, #to_s, #value, widget_delegator

Methods included from Widgets::DSL

#form, #list, #widget

Methods included from WidgetParts::Container

#has_widget?, #not_visible?, #visible?, #widget, #widgets

Methods included from Dill

#deprecate

Methods included from Constructors

#Decimal, #Integer, #Widget

Methods included from WidgetParts::Struct

included

Constructor Details

This class inherits a constructor from Dill::Widget

Class Method Details

.data_row(selector, &block) ⇒ Object



19
20
21
# File 'lib/dill/widgets/table.rb', line 19

def self.data_row(selector, &block)
  widget :data_row, selector, Row, &block
end

.header_row(selector, &block) ⇒ Object



11
12
13
# File 'lib/dill/widgets/table.rb', line 11

def self.header_row(selector, &block)
  widget :header_row, selector, Row, &block
end

Instance Method Details

#columnsObject



68
69
70
# File 'lib/dill/widgets/table.rb', line 68

def columns
  Columns.new(self)
end

#rowsObject



72
73
74
# File 'lib/dill/widgets/table.rb', line 72

def rows
  widgets(:data_row).map(&:value)
end