<% f.fields_for :keys do |key_form| %>
    <%= check_box_tag "keys_to_update[]", key_form.object.id %>
    <%= key_form.label :name, key_form.object.name %>
<% end %>

This is the output:

<input id="keys_to_update_" name="keys_to_update[]" type="checkbox"
value="4" />
<input id="keys_to_update_" name="keys_to_update[]" type="checkbox"
value="5" />


I try to use cucumber and check only one of them (or all of them) but
need an id.

Thanks!

-- 
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