Method: Formtastic::Inputs::CheckBoxesInput#check_box_with_hidden_input
- Defined in:
- lib/formtastic/inputs/check_boxes_input.rb
#check_box_with_hidden_input(choice) ⇒ Object
117 118 119 120 121 122 123 124 125 |
# File 'lib/formtastic/inputs/check_boxes_input.rb', line 117 def check_box_with_hidden_input(choice) value = choice_value(choice) builder.check_box( association_primary_key || method, (choice).merge(:id => choice_input_dom_id(choice), :name => input_name, :disabled => disabled?(value), :required => false), value, unchecked_value ) end |