Displaying 1 result from an estimated 1 matches for "add_item_to_ord".
Did you mean:
add_item_to_order
2006 Jul 06
7
form_remote_tag submitting to an rjs file.
I have the following form that I am trying to use, but for some reason,
the form gets submitted with out the params values.
<%= form_remote_tag(:url => { :action => :add_item_to_order }) %>
<tr>
<td>
<%=collection_select(:order_item , :item_category_id,
@item_categories, :id, :name)%>
</td>
<td>
<%= text_field ''order_item'', ''quantity'', :size => "5" %>
</td>
<%= sub...