Class: Effective::FormInputs::FormGroup

Inherits:
Effective::FormInput show all
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

#name, #options

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_optionsObject



5
6
7
8
9
10
11
# File 'app/models/effective/form_inputs/form_group.rb', line 5

def input_html_options
  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
      (:div, '', class: 'col-sm-2') + (:div, capture(&block), options[:input])
    end
  else
    (:div, capture(&block), options[:input])
  end
end