DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Using A Mutiple Collection Select Form Helper With Habtm Or Has Many Associations In Rails
// where user has and belongs to many roles
# in your view
<%= collection_select :user, :role_ids, Role.find(:all, :order => 'name ASC'), :id, :name, { :selected => @user.role_ids }, { :multiple => true, :name => 'user[role_ids][]' } -%>






Comments
Snippets Manager replied on Tue, 2011/03/29 - 7:42am