Class: Effective::FormInputs::Reset
- Inherits:
-
Effective::FormInput
- Object
- Effective::FormInput
- Effective::FormInputs::Reset
- Defined in:
- app/models/effective/form_inputs/reset.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
Methods inherited from Effective::FormInput
#feedback_options, #hint_options, #initialize, #input_group_options, #input_js_options, #label_options, #wrapper_options
Constructor Details
This class inherits a constructor from Effective::FormInput
Instance Method Details
#icon_name ⇒ Object
17 18 19 20 |
# File 'app/models/effective/form_inputs/reset.rb', line 17 def icon_name return @icon unless @icon.nil? @icon = [:input].delete(:icon) || ''.html_safe end |
#input_html_options ⇒ Object
13 14 15 |
# File 'app/models/effective/form_inputs/reset.rb', line 13 def { class: 'btn btn-primary', type: 'reset' } end |
#to_html(&block) ⇒ Object
7 8 9 10 11 |
# File 'app/models/effective/form_inputs/reset.rb', line 7 def to_html(&block) content_tag(:button, [:input]) do icon_name.present? ? (icon(icon_name) + name) : name end end |