Class: ActionView::Helpers::Tags::CollectionCheckBoxes::CheckBoxBuilder
- Inherits:
- 
      Builder
      
        - Object
- Builder
- ActionView::Helpers::Tags::CollectionCheckBoxes::CheckBoxBuilder
 
- Defined in:
- actionview/lib/action_view/helpers/tags/collection_check_boxes.rb
Overview
:nodoc:
Instance Method Summary collapse
- #checkbox(extra_html_options = {}) ⇒ Object (also: #check_box)
Instance Method Details
#checkbox(extra_html_options = {}) ⇒ Object Also known as: check_box
| 13 14 15 16 17 18 | # File 'actionview/lib/action_view/helpers/tags/collection_check_boxes.rb', line 13 def checkbox( = {}) = .merge() [:multiple] = true [:skip_default_ids] = false @template_object.checkbox(@object_name, @method_name, , @value, nil) end |