I'm trying to use autocomplete based on few sources. E.g. search in facebook graph and my own db. It's clear, that facebook search is not so fast as my db. That's why I want to launch few ajax requests for every sorce (each source => separate controller).
After "success" event of request I want to add results autocomplete fields immediately, without any additional actions like typing new letter.
P.S. JQuery UI Autocomplete helps not a lot. Because:
- Addind images for search results - is a plugin.
- Is possible to set some array for search results and add to Autocomplete search results, but I'll see new results after typing new letter.
P.P.S As search results I need image, name, 2-3 additional parameters.
Thank you in advance!