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

#hint_options, #initialize, #input_group_options, #input_html_options, #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



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

def build_input(&block)
  (:label, (name || ' ').html_safe) + capture(&block)
end

#feedback_optionsObject



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

def feedback_options
  false
end