aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/tags/collection_check_boxes.rb
blob: 1103341888d377207490d9848cc18279cdc4c65f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
module ActionView
  module Helpers
    module Tags
      class CollectionCheckBoxes < CollectionRadioButtons
        delegate :check_box, :label, :to => :@template_object

        def render
          rendered_collection = render_collection do |value, text, default_html_options|
            default_html_options[:multiple] = true

            if block_given?
              yield sanitize_attribute_name(value), text, value, default_html_options
            else
              check_box(@object_name, @method_name, default_html_options, value, nil) +
                label(@object_name, sanitize_attribute_name(value), text, :class => "collection_check_boxes")
            end
          end

          # Append a hidden field to make sure something will be sent back to the
          # server if all check boxes are unchecked.
          hidden = @template_object.hidden_field_tag(tag_name_multiple, "", :id => nil)

          wrap_rendered_collection(rendered_collection + hidden)
        end
      end
    end
  end
end