Sha256: a11e724ee037c4a9190fdcc8c8ecd54e226def1589ed87a49fe096b4e1008091

Contents?: true

Size: 851 Bytes

Versions: 5

Compression:

Stored size: 851 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
            "#{super}[]"
          end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
actionview-5.1.1 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-5.1.0 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-5.1.0.rc2 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-5.1.0.rc1 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-5.1.0.beta1 lib/action_view/helpers/tags/collection_check_boxes.rb