Sha256: 62e4b307529a8a953ed660b78759a0fa16f9153d346029734ca98b4a73b4c050
Contents?: true
Size: 831 Bytes
Versions: 114
Compression:
Stored size: 831 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
114 entries across 106 versions & 7 rubygems