I am using a nested form gem in which i have two fields, the view is given as
<%= f.fields_for :round_questions do |question| %>
<%= question.label :question %>
<%= question.text_field :question %>
Rate the Answer</br></br>
<div class="star-questions" ></div>
<%= question.text_field :answer_rating, :class=> 'star-answer', :disabled=>true %>
<%= question.link_to_remove "Remove this Question" %>
<% end %>
<%= f.link_to_add "Add a Question", :round_questions,
:class=> 'btn waves-effect waves-light btn-medium custom_btn_gray' %>
and in the controller i have
@interview_round = InterviewRound.where(id: params[:id]).first
5.times {@interview_round.round_questions.build}
respond_to do |format|
format.js
end
now when the form loads there will be 5 questions present, I want to give the remove link only when someone adds a question but this link gives remove link to all questions, Please tell me how can I solve this ?
Try giving it like this