jQuery UI autocomplete examples
- by RUtt
I'm hoping someone can help with this, I'm having a real difficult time getting jQueryUI's autocomplete to work with ajax in a asp.net app (not MVC). I can get it to make the ajax call but I'm not doing something right handling the response.
Just for starters I'm trying to have autocomplete make an ajax call to 'GetSuggestions.aspx' which will return a hard coded string. I have it where it will make the call to GetSuggestions.aspx but I can't get it to return anything to the page. (My next step would be to have 'GetSuggestions.asxp' return a list of name/value pairs but I'll tackle that next).
I'm using the example from here:
http://jqueryui.com/demos/autocomplete/#remote
with the exception of using 'source: "GetSuggestions.aspx" (instead of "search.php")