Method: Formtastic::Inputs::RadioInput#to_html

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

#to_htmlObject



133
134
135
136
137
138
139
140
141
142
143
144
145
146
# File 'lib/formtastic/inputs/radio_input.rb', line 133

def to_html
  input_wrapping do
    choices_wrapping do
      legend_html <<
      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