Hi all,
I'm calling a method in my controller like this: <%= link_to_remote 'Search', :url => customers_path + '.js', :with => "'name=' + $('name').value", :method => :get, :update => 'customers' - %>
And then updating my page like this: format.js { render :partial => 'customers/result', :collection => @customers }
And my app is telling me that the partial doesn't exist where it should... However, it does. There is definately a partial in app/ views/customers called _result.html.erb.
Does anyone know what would be causing this?