I have a form in Rails 3 that must be submitted with a normal post, like this
<%= form_for @seller, :as => :seller_user, :url => save_seller_url do |f| %>
but one of the field inside needs to execute a remote ajax call to update some value, like this one
<%= f.select( ... ) %> => on change please make a remote call to fill new data here
I did not found any documentation online to add the :remote => true option to the select helper, am I missing something?
what is the correct way of handling this?
Thank you