Displaying 1 result from an estimated 1 matches for "community_form".
2006 May 18
6
Form actions with additional parameters
...rm an additional parameters but can''t
figure out how to do it. My code looks like this
<%= start_form_tag :action => ''create'', next_step => true %>
<%= render :partial => ''user_form'' %>
<%= render :partial => ''community_form'' %>
<%= submit_tag "Optional Next Step" %>
<%= end_form_tag %>
<%= button_to ''Skip Next Step'', :action => ''create'', next_step => false %>
The form_tag should demonstrate what I intend to do. In the
corresponding...