Displaying 1 result from an estimated 1 matches for "current_brand".
Did you mean:
current_branch
2006 Jun 05
1
:onChange and AJAX forms
Hi,
I have this:
<%= form_remote_tag (:update => "item_type_list", :url => {:action =>
:list_item_type_for_brand}, :id => "form1") %>
<div>
Brand <%= select :current_brand, :id, @all_brands,{},{:onchange =>
"submit()"} %>
<input type="submit" value="Change" />
</div>
<%= end_form_tag %>
which returns a list of items.
Its working when I click on the submit button, but when I use the
:onchange to submit t...