Skip to content

Instantly share code, notes, and snippets.

@dchelimsky
Created October 1, 2008 05:33
Show Gist options
  • Select an option

  • Save dchelimsky/14038 to your computer and use it in GitHub Desktop.

Select an option

Save dchelimsky/14038 to your computer and use it in GitHub Desktop.
<% form_for(@user) do |f| %>
...
<% f.check_boxes_for :roles do |role| %>
<%= role.check_box %>
<%= role.label :name %><br/>
<% end %>
<% end %>
... or ...
<% form_for(@user) do |f| %>
...
<% f.check_boxes_for @roles, 'role_ids' do |role| %>
<%= role.check_box %>
<%= role.label :name %><br/>
<% end %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment