Sha256: bc91587f547cd8205402aea27dafa8c28800b6a977fc9df93314525ecab6291b
Contents?: true
Size: 846 Bytes
Versions: 33
Compression:
Stored size: 846 Bytes
Contents
require 'action_view/helpers/tags/collection_helpers' module ActionView module Helpers module Tags # :nodoc: class CollectionCheckBoxes < Base # :nodoc: include CollectionHelpers class CheckBoxBuilder < Builder # :nodoc: def check_box(extra_html_options={}) html_options = extra_html_options.merge(@input_html_options) html_options[:multiple] = true @template_object.check_box(@object_name, @method_name, html_options, @value, nil) end end def render(&block) render_collection_for(CheckBoxBuilder, &block) end private def render_component(builder) builder.check_box + builder.label end def hidden_field_name #:nodoc: "#{super}[]" end end end end end
Version data entries
33 entries across 33 versions & 4 rubygems