Trying to use JQuery's autocomplete with ajax call for results
-
Well I have a 50000+ row table so I can't load all rows into each page for the user to use autocomplete, so I am trying to use an ajax call via the extraParams parameter but don't know: 1) What format to make the results display in on the page being called via ajax (get-dropdown-results.xml in this case) 2) How to get these results into the dropdown Here's my current source: $("input#autocomplete-field").autocomplete( "/ajax/get-dropdown-results.xml",{ delay:0, minChars:3, matchContains:true, matchSubset:false, max:100, extraParams: { q: function () { return escape($("input#autocomplete-field").val()); } } }); I am running firebug so I can see the ajax calls are being made correctly (/ajax/get-dropdown-results.xml?q=whatever-they-typed) but I don't know where to put code to handle the returned text.
-
Answer:
I assume that you use http://dyve.net/jquery/?autocomplete. This plugin will create drop-down popup for you automatically. However it expects results to be in plain text format, not XML. Try returning results separated by line ends: foo\n bar\n baz\n
Andrew G. Johnson at Stack Overflow Visit the source
Related Q & A:
- Can i use Shamir's secret sharing scheme for multiplicative homomorphism for secure multiparty computation?Best solution by Cryptography
- How to return result from ajax call synchronously?Best solution by Stack Overflow
- How to use Bing's search API?Best solution by bing.com
- How do I use jQuery sortable?Best solution by Stack Overflow
- How to do pagination in ajax call?Best solution by stackoverflow.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.