Method: Formtastic::Inputs::CheckBoxesInput#to_html

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

#to_htmlObject



78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# File 'lib/formtastic/inputs/check_boxes_input.rb', line 78

def to_html
  input_wrapping do
    choices_wrapping do
      legend_html <<
      hidden_field_for_all <<
      choices_group_wrapping do
        collection.map { |choice|
          choice_wrapping(choice_wrapping_html_options(choice)) do
            choice_html(choice)
          end
        }.join("\n").html_safe
      end
    end
  end
end