Class: HtmlGrid::SimpleLabel

Inherits:
NamedComponent show all
Defined in:
lib/htmlgrid/label.rb

Constant Summary

Constants inherited from Component

Component::CSS_CLASS, Component::CSS_ID, Component::HTML_ATTRIBUTES, Component::HTTP_HEADERS, Component::LABEL

Instance Attribute Summary

Attributes inherited from NamedComponent

#name

Attributes inherited from Component

#attributes, #dojo_tooltip, #label, #model, #value

Instance Method Summary collapse

Methods inherited from NamedComponent

#data_origin, #error?, #initialize

Methods inherited from Component

#_to_html, #autofill?, #css_class, #css_class=, #css_id, #css_id=, #dojo_dynamic_html, #dojo_parse_on_load, #dojo_tag, #dojo_title=, #dynamic_html, #escape, #escape_symbols, #formname, #http_headers, #initialize, #label?, #onclick=, #onload=, #onsubmit=, #set_attribute, #tabindex=

Constructor Details

This class inherits a constructor from HtmlGrid::NamedComponent

Instance Method Details

#initObject



32
33
34
35
36
37
38
39
# File 'lib/htmlgrid/label.rb', line 32

def init
  super
  @value = @lookandfeel.lookup(@name)
  state = @session.state
  if state.respond_to?(:mandatory?) && state.mandatory?(@name)
    @value += "*"
  end
end

#to_html(context) ⇒ Object



41
42
43
# File 'lib/htmlgrid/label.rb', line 41

def to_html(context)
  context.label(@attributes) { @value }
end