I have this link in my video show view:
<%= link_to "Enable Commenting", new_video_comment_title_path(@video, :format => :js), :remote => true, :id => 'enable_commenting_link', :class => 'edit' %>
call comment_title/new.js.erb file:
$("<%= escape_javascript render(:file => 'comment_titles/new.html.erb') %>").insertAfter('#enable_commenting_link');
which renders this form:
<%= simple_form_for setup_video(@video) do |f| %>
<% f.fields_for :comment_titles do |t| %>
<%= t.input :title, :label => "Comment Title:" %>
<%= t.button :submit, :value => 'Add', :id => 'add_comment_title' %>
<div class='hint'>Let your listeners know what comments you want by adding a guiding title for them. Pose a question, ask for feedback, or anything else!</div>
<% end %>
<% end %>
Now this creates a new form every time I click the link, but it's always for updating the same nested attributed. I want each new form to be for creating a new comment_title nested attribute. How can I do this?
Please let me know if you need to see more code.