You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 12, 2021. It is now read-only.
Using nested_forms in rails for association forms.
Survey model
has_many :questions
Question model
has_many :options
In survey form when I click on
<%= f.link_to_add "Add More Questions", :questions %>
Question fields open but options fields not open.It open by click on
<%= question.link_to_add "Add more options", :options %>
I want when I click on add more questions , option fields also appear.
The text was updated successfully, but these errors were encountered: