Sha256: 63b308d72fdd1f9df6f012efe79b093f79f14b51d097624b6af54d892903b4bd

Contents?: true

Size: 830 Bytes

Versions: 99

Compression:

Stored size: 830 Bytes

Contents

# frozen_string_literal: true

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)
            html_options[:skip_default_ids] = false
            @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

99 entries across 95 versions & 7 rubygems

Version Path
actionview-7.0.0 lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-6.1.4.4 lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-6.0.4.4 lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-7.0.0.rc3 lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-6.1.4.3 lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-6.0.4.3 lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-6.0.4.2 lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-6.1.4.2 lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-7.0.0.rc2 lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-7.0.0.rc1 lib/action_view/helpers/tags/collection_radio_buttons.rb
date_n_time_picker_activeadmin-0.1.2 vendor/bundle/ruby/2.6.0/gems/actionview-6.1.4.1/lib/action_view/helpers/tags/collection_radio_buttons.rb
date_n_time_picker_activeadmin-0.1.1 vendor/bundle/ruby/2.6.0/gems/actionview-6.1.4.1/lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-7.0.0.alpha2 lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-7.0.0.alpha1 lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-6.1.4.1 lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-6.0.4.1 lib/action_view/helpers/tags/collection_radio_buttons.rb
rails_mini_profiler-0.2.0 vendor/bundle/ruby/3.0.0/gems/actionview-6.1.4/lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-6.1.4 lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-6.0.4 lib/action_view/helpers/tags/collection_radio_buttons.rb
actionview-6.0.3.7 lib/action_view/helpers/tags/collection_radio_buttons.rb