Sha256: da60c8c8e6ce2e98bbabfa1d131c3a1154fca7bb21a3c78a6281fb17553433fa

Contents?: true

Size: 746 Bytes

Versions: 35

Compression:

Stored size: 746 Bytes

Contents

require 'action_view/helpers/tags/collection_helpers'

module ActionView
  module Helpers
    module Tags # :nodoc:
      class CollectionRadioButtons < Base # :nodoc:
        include CollectionHelpers

        class RadioButtonBuilder < Builder # :nodoc:
          def radio_button(extra_html_options={})
            html_options = extra_html_options.merge(@input_html_options)
            @template_object.radio_button(@object_name, @method_name, @value, html_options)
          end
        end

        def render(&block)
          render_collection_for(RadioButtonBuilder, &block)
        end

        private

          def render_component(builder)
            builder.radio_button + builder.label
          end
      end
    end
  end
end

Version data entries

35 entries across 35 versions & 4 rubygems

Version Path
actionview-5.0.7.2 lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-5.0.7.1 lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-5.0.7 lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-5.0.6 lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-5.0.6.rc1 lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-5.0.5 lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-5.0.5.rc2 lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-5.0.5.rc1 lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-5.0.4 lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-5.0.4.rc1 lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-5.0.3 lib/action_view/helpers/tags/collection_radio_buttons.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/actionview-5.0.2/lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-5.0.2 lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-5.0.2.rc1 lib/action_view/helpers/tags/collection_radio_buttons.rb
autocompl-0.2.2 test/dummy/vendor/bundle/ruby/2.3.0/gems/actionview-5.0.1/lib/action_view/helpers/tags/collection_radio_buttons.rb
autocompl-0.2.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/actionview-5.0.1/lib/action_view/helpers/tags/collection_radio_buttons.rb
autocompl-0.2.0 test/dummy/vendor/bundle/ruby/2.3.0/gems/actionview-5.0.1/lib/action_view/helpers/tags/collection_radio_buttons.rb
autocompl-0.1.2 test/dummy/vendor/bundle/ruby/2.3.0/gems/actionview-5.0.1/lib/action_view/helpers/tags/collection_radio_buttons.rb
autocompl-0.1.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/actionview-5.0.1/lib/action_view/helpers/tags/collection_radio_buttons.rb
autocompl-0.1.0 test/dummy/vendor/bundle/ruby/2.3.0/gems/actionview-5.0.1/lib/action_view/helpers/tags/collection_radio_buttons.rb