I am trying to add a class to the select form helper, here is my code:
<%= f.select :manager_id, user.collect {|u| [u.username, u.id]}, :prompt => "Select manager
username", :class => "btn btn-default dropdown-toggle" %>
But it didn't work, and is there an option to add multiple selection?