params[uploaded_file] is not recognised when i try form_remote_tag like
this:
<%= form_remote_tag :url=>{:action => “save_file”} ,:html=>{:multipart
=> true} <%=text_field_tag “name”%>
<%= end_form_tag %>
It works when i do a normal submit like so:
<%= form_tag( {:action => ‘save_file’}, :multipart => true) %>
%>
<%=text_field_tag “name”%>
<%= end_form_tag %>
Any ideas what is wrong?
Thanks in advance
Chris