I have a form defined in a view :
<% form_remote_tag( :url =>{:action => ‘list’ }, :html => {:id =>
‘prop_search_form’, :name => “prop_search_form”}) do %>
…
<% end %>
when submitted, the check in list action of the controller is not
performed
if request.xml_http_request?
render :partial => 'result_area', :layout => 'false'
end
debugging gives :
request.xml_http_request? => false
why ?
the html code generated seems to be correct :
where am I wrong ?
thanks for your help