Flowdock
method

render

Importance_0
render(&block) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_view/helpers/tags/collection_check_boxes.rb, line 16
        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
Register or log in to add new notes.