Sha256: efb645ed5b86ff65b62a95b6347d6d86b0e11aba47aa040950ee4f06ddc74194

Contents?: true

Size: 934 Bytes

Versions: 114

Compression:

Stored size: 934 Bytes

Contents

# frozen_string_literal: true

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

114 entries across 106 versions & 7 rubygems

Version Path
actionview-5.2.8.1 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-5.2.8 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-5.2.7.1 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-5.2.7 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-5.2.6.3 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-5.2.6.2 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-5.2.6.1 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-5.2.6 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-5.2.4.6 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-5.2.5 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-5.2.4.5 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-5.2.4.4 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-5.2.4.3 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-6.0.2.2 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-5.2.4.2 lib/action_view/helpers/tags/collection_check_boxes.rb
argon-1.3.1 vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/collection_check_boxes.rb
symbolic_enum-1.1.5 vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-6.0.2.1 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-5.2.4.1 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-6.0.2 lib/action_view/helpers/tags/collection_check_boxes.rb