Class: SimpleForm::Inputs::TextFieldInput
- Defined in:
- lib/simple_form/inputs/text_field_input.rb
Overview
Handles common text field inputs, as String, Numeric, Float and Decimal.
Constant Summary
Constants inherited from Base
Instance Method Summary collapse
Methods inherited from Base
#initialize, #input_options, #render
Methods included from SimpleForm::I18nCache
#get_i18n_cache, #i18n_cache, #reset_i18n_cache
Methods included from Components::Wrapper
#wrap, #wrapper_html_options, #wrapper_tag
Methods included from Components::Labels
included, #label, #label_html_options, #label_target, #label_text
Methods included from Components::Hints
#hint, #hint_html_options, #hint_tag, #hint_text
Methods included from Components::Errors
#error, #error_html_options, #error_tag, #error_text
Constructor Details
This class inherits a constructor from SimpleForm::Inputs::Base
Instance Method Details
#input ⇒ Object
5 6 7 |
# File 'lib/simple_form/inputs/text_field_input.rb', line 5 def input @builder.text_field(attribute_name, ) end |
#input_html_options ⇒ Object
9 10 11 12 13 |
# File 'lib/simple_form/inputs/text_field_input.rb', line 9 def = super [:maxlength] ||= column.limit if column end |