Flowdock
method

collection_check_boxes

Importance_1
collection_check_boxes(method, collection, value_method, text_method, options = {}, html_options = {}, &block) public

Wraps ActionView::Helpers::FormOptionsHelper#collection_check_boxes for form builders:

<%= form_for @post do |f| %>
  <%= f.collection_check_boxes :author_ids, Author.all, :id, :name_with_initial %>
  <%= f.submit %>
<% end %>

Please refer to the documentation of the base helper for details.

Show source
Register or log in to add new notes.