Method: Formtastic::Inputs::CheckBoxesInput#choice_html

Defined in:
lib/formtastic/inputs/check_boxes_input.rb

#choice_html(choice) ⇒ Object



94
95
96
97
98
99
100
# File 'lib/formtastic/inputs/check_boxes_input.rb', line 94

def choice_html(choice)
  template.(
    :label,
    checkbox_input(choice) + choice_label(choice),
    label_html_options.merge(:for => choice_input_dom_id(choice), :class => nil)
  )
end