Method: Formtastic::Inputs::CheckBoxesInput#check_box_without_hidden_input
- Defined in:
- lib/formtastic/inputs/check_boxes_input.rb
#check_box_without_hidden_input(choice) ⇒ Object
127 128 129 130 131 132 133 134 135 |
# File 'lib/formtastic/inputs/check_boxes_input.rb', line 127 def check_box_without_hidden_input(choice) value = choice_value(choice) template.check_box_tag( input_name, value, checked?(value), (choice).merge(:id => choice_input_dom_id(choice), :disabled => disabled?(value), :required => false) ) end |