Never been to DZone Snippets before?

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

About this user

davenolan http://textgoeshere.org.uk

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Using a mutiple collection select form helper with habtm or has many associations in Rails

// where user has and belongs to many roles

   1  
   2  # in your view
   3  <%= collection_select :user, :role_ids, Role.find(:all, :order => 'name ASC'), :id, :name, { :selected => @user.role_ids }, { :multiple => true, :name => 'user[role_ids][]' } -%>
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS