Class: Effective::FormInputs::PercentField
- Inherits:
-
Effective::FormInput
- Object
- Effective::FormInput
- Effective::FormInputs::PercentField
- Defined in:
- app/models/effective/form_inputs/percent_field.rb
Constant Summary
Constants inherited from Effective::FormInput
Effective::FormInput::BLANK, Effective::FormInput::DEFAULT_FEEDBACK_OPTIONS, Effective::FormInput::DEFAULT_INPUT_GROUP_OPTIONS, Effective::FormInput::EMPTY_HASH, Effective::FormInput::EXCLUSIVE_CLASS_PREFIXES, Effective::FormInput::EXCLUSIVE_CLASS_SUFFIXES, Effective::FormInput::HORIZONTAL_LABEL_OPTIONS, Effective::FormInput::HORIZONTAL_WRAPPER_OPTIONS, Effective::FormInput::INLINE_LABEL_OPTIONS, Effective::FormInput::VERTICAL_WRAPPER_OPTIONS
Instance Attribute Summary
Attributes inherited from Effective::FormInput
Instance Method Summary collapse
- #build_input(&block) ⇒ Object
- #input_group_options ⇒ Object
- #input_html_options ⇒ Object
-
#validated?(name) ⇒ Boolean
This has gotta be a valid pattern.
Methods inherited from Effective::FormInput
#feedback_options, #hint_options, #initialize, #input_js_options, #label_options, #to_html, #wrapper_options
Constructor Details
This class inherits a constructor from Effective::FormInput
Instance Method Details
#build_input(&block) ⇒ Object
7 8 9 10 |
# File 'app/models/effective/form_inputs/percent_field.rb', line 7 def build_input(&block) @builder.hidden_field(name, value: percent_to_integer, id: tag_id + '_value_as_integer') + @template.text_field_tag(name, percent_to_s, [:input].merge(id: tag_id, name: nil)) end |
#input_group_options ⇒ Object
12 13 14 |
# File 'app/models/effective/form_inputs/percent_field.rb', line 12 def { input_group: { class: 'input-group' }, prepend: content_tag(:span, icon('percent'), class: 'input-group-text') } end |
#input_html_options ⇒ Object
16 17 18 |
# File 'app/models/effective/form_inputs/percent_field.rb', line 16 def { class: 'form-control effective_percent', autocomplete: 'off', id: tag_id } end |
#validated?(name) ⇒ Boolean
This has gotta be a valid pattern
21 22 23 |
# File 'app/models/effective/form_inputs/percent_field.rb', line 21 def validated?(name) true end |