How to pre-check checkboxes in formtastic

前端 未结 4 827
天命终不由人
天命终不由人 2021-02-04 03:14

I have a form I\'m trying to set up ... Users can have many posts, and each post can have many people watching it.

The Watch model is set up polymorphically as \'watcha

4条回答
  •  余生分开走
    2021-02-04 03:42

    For anyone else having the same issue:

    <%= f.input :some_input, :as => :boolean, :input_html => { :checked => 'checked' } %>
    

提交回复
热议问题