Class: FormtasticBootstrap::Inputs::BooleanInput
- Inherits:
-
Formtastic::Inputs::BooleanInput
- Object
- Formtastic::Inputs::BooleanInput
- FormtasticBootstrap::Inputs::BooleanInput
- Includes:
- Base
- Defined in:
- lib/formtastic-bootstrap/inputs/boolean_input.rb
Instance Method Summary collapse
-
#empty_label ⇒ Object
Need this for formatting to work.
- #label_html_options ⇒ Object
- #to_html ⇒ Object
Methods included from FormtasticBootstrap::Inputs::Base::Wrapping
#control_group_div_wrapping, #generic_input_wrapping, #inline_inputs_div_wrapping, #input_div_wrapping, #prepended_input_wrapping, #wrapper_html_options
Methods included from FormtasticBootstrap::Inputs::Base::Labelling
#control_label_html_options, #label_html
Methods included from FormtasticBootstrap::Inputs::Base::Html
Methods included from FormtasticBootstrap::Inputs::Base::Hints
Methods included from FormtasticBootstrap::Inputs::Base::Errors
#error_first_html, #error_html, #error_list_html, #error_none_html, #error_sentence_html
Instance Method Details
#empty_label ⇒ Object
Need this for formatting to work.
23 24 25 |
# File 'lib/formtastic-bootstrap/inputs/boolean_input.rb', line 23 def empty_label template.content_tag(:label, '', :class => 'control-label') do end end |
#label_html_options ⇒ Object
17 18 19 20 |
# File 'lib/formtastic-bootstrap/inputs/boolean_input.rb', line 17 def new_class = [super[:class], "checkbox"].compact.join(" ") super.merge(:class => new_class) end |
#to_html ⇒ Object
7 8 9 10 11 12 13 14 15 |
# File 'lib/formtastic-bootstrap/inputs/boolean_input.rb', line 7 def to_html control_group_div_wrapping do empty_label << hidden_field_html << input_div_wrapping(:block) do label_with_nested_checkbox end end end |