Class: RubyApp::Elements::Input

Inherits:
RubyApp::Element show all
Defined in:
lib/ruby_app/elements/input.rb

Defined Under Namespace

Classes: ChangedEvent

Instance Attribute Summary collapse

Attributes inherited from RubyApp::Element

#attributes

Instance Method Summary collapse

Methods inherited from RubyApp::Element

#element_id, get_element

Methods included from Mixins::ConfigurationMixin

#configuration

Methods included from Mixins::TranslateMixin

#localize, #translate

Methods included from Mixins::TemplateMixin

#exclude_parent_template, #exclude_parent_template?, #get_cache, #get_template, #get_templates, #template_name, #template_path

Methods included from Mixins::RenderMixin

#content_for, #render, #rendered?

Constructor Details

#initializeInput

Returns a new instance of Input.



35
36
37
38
# File 'lib/ruby_app/elements/input.rb', line 35

def initialize
  super
  @value = nil
end

Instance Attribute Details

#valueObject

Returns the value of attribute value.



31
32
33
# File 'lib/ruby_app/elements/input.rb', line 31

def value
  @value
end