How do I set a unique ID for checkboxes in a multi-record Rails form?

前端 未结 4 674
太阳男子
太阳男子 2021-01-06 21:55

I\'ve set up a Rails form roughly following the instructions in this Railscast.

Here\'s the code for the form:

<% form_tag complete_todos_path, :m         


        
4条回答
  •  北海茫月
    2021-01-06 22:37

    Can you try this and let us know if it works:

    check_box_tag "todo_ids[#{todo.id}]", todo.id %>
    

提交回复
热议问题