Sha256: d81e5a7cadc3c34469b4982e1d67d68dd71e2c12ee4b9138dcce3c35eab41cbe

Contents?: true

Size: 1.38 KB

Versions: 16

Compression:

Stored size: 1.38 KB

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)
            @template_object.check_box(@object_name, @method_name, html_options, @value, nil)
          end
        end

        def render(&block)
          rendered_collection = render_collection do |item, value, text, default_html_options|
            default_html_options[:multiple] = true
            builder = instantiate_builder(CheckBoxBuilder, item, value, text, default_html_options)

            if block_given?
              @template_object.capture(builder, &block)
            else
              render_component(builder)
            end
          end

          # Append a hidden field to make sure something will be sent back to the
          # server if all check boxes are unchecked.
          hidden_name = @html_options[:name] || "#{tag_name}[]"
          hidden = @template_object.hidden_field_tag(hidden_name, "", :id => nil)

          rendered_collection + hidden
        end

        private

        def render_component(builder)
          builder.check_box + builder.label
        end
      end
    end
  end
end

Version data entries

16 entries across 16 versions & 2 rubygems

Version Path
actionpack-4.0.5 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-4.1.1 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-4.1.0 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-4.1.0.rc2 lib/action_view/helpers/tags/collection_check_boxes.rb
actionpack-4.0.4 lib/action_view/helpers/tags/collection_check_boxes.rb
actionpack-4.0.4.rc1 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-4.1.0.rc1 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-4.1.0.beta2 lib/action_view/helpers/tags/collection_check_boxes.rb
actionpack-4.0.3 lib/action_view/helpers/tags/collection_check_boxes.rb
actionview-4.1.0.beta1 lib/action_view/helpers/tags/collection_check_boxes.rb
actionpack-4.0.2 lib/action_view/helpers/tags/collection_check_boxes.rb
actionpack-4.0.1 lib/action_view/helpers/tags/collection_check_boxes.rb
actionpack-4.0.1.rc4 lib/action_view/helpers/tags/collection_check_boxes.rb
actionpack-4.0.1.rc3 lib/action_view/helpers/tags/collection_check_boxes.rb
actionpack-4.0.1.rc2 lib/action_view/helpers/tags/collection_check_boxes.rb
actionpack-4.0.1.rc1 lib/action_view/helpers/tags/collection_check_boxes.rb