Displaying 1 result from an estimated 1 matches for "req_name".
Did you mean:
rem_name
2006 Apr 27
0
text_field_with_auto_complete - NoMethodError in the model
Hey guys,
I have a text_field_with_auto_complete that looks like this:
<%= text_field_with_auto_complete ("service_request", "req_name",
{"size"=>40}) %>
which goes to this in the controller:
def auto_complete_for_service_request_req_name
auto_complete_responder_for_investigators
params[:service_request][:req_name]
end
auto_complete_responder_for_investigators renders the partial after
doing a query.
W...