Hi,
I have 2 models, group and user.
A group has many users and a user belongs to a group.

In my new group form, I want a checkox list with all my users and get
all the checked users.

How do I do this in the form?

<%= form_for(@group) do |f| %>
...
  <div class="field">
    <%= f.label :name %><br />
    <%= f.text_field :name %>
  </div>

    <% @users.each do |user| %>
        <%= f.label user.fullname %>
        ???
    <% end %>
...
<% end %>
-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to