Sha256: dc0ddf356802142d82e314ef3aec10140b87d4656f92c659d95739842d42f763
Contents?: true
Size: 936 Bytes
Versions: 23
Compression:
Stored size: 936 Bytes
Contents
module FlexaFormtasticBootstrap module Inputs class RadioInput < Formtastic::Inputs::RadioInput include Base include Base::Choices def to_html clearfix_div_wrapping do legend_html << input_div_wrapping do 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 def choice_html(choice) template.content_tag(:label, label_html_options.merge(:for => choice_input_dom_id(choice), :class => nil)) do builder.radio_button(input_name, choice_value(choice), input_html_options.merge(choice_html_options(choice)).merge(:required => false)) << choice_label(choice) end end end end end
Version data entries
23 entries across 23 versions & 1 rubygems