Class: Effective::FormInputs::FormGroup
- Inherits:
-
Effective::FormInput
- Object
- Effective::FormInput
- Effective::FormInputs::FormGroup
- Defined in:
- app/models/effective/form_inputs/form_group.rb
Constant Summary
Constants inherited from Effective::FormInput
Effective::FormInput::BLANK, Effective::FormInput::EXCLUSIVE_CLASS_PREFIXES, Effective::FormInput::EXCLUSIVE_CLASS_SUFFIXES
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
#input_html_options ⇒ Object
5 6 7 8 9 10 11 |
# File 'app/models/effective/form_inputs/form_group.rb', line 5 def if layout == :horizontal { class: 'form-group col-sm-10' } else { class: 'form-group' } end end |
#to_html(&block) ⇒ Object
13 14 15 16 17 18 19 20 21 22 |
# File 'app/models/effective/form_inputs/form_group.rb', line 13 def to_html(&block) case layout when :horizontal build_wrapper do content_tag(:div, '', class: 'col-sm-2') + content_tag(:div, capture(&block), [:input]) end else content_tag(:div, capture(&block), [:input]) end end |