Displaying 1 result from an estimated 1 matches for "kwiz_id".
2007 Apr 03
3
end_form_tag
In my logs I can see that end_form_tag is being deprecated. I wanted to
make the switch now but cannot get the new end tag to work.
THIS WORKS:
<%= form_remote_tag :url =>{:action => "next_question",
:kwiz_id => @kwiz.id,
:position => @next_position} %>
<% @question.choices.each do |choice| -%>
<%= radio_button_tag "choice_id", choice.id %>
<%= choice.name %><br />
<% end -%>...