Reputation: 333
Is there a library (like Wink Toolkit, Sencha Touch or jQuery Mobile) that offers autocomplete solutions for web apps out of the box?
I need to apologize because I forgot to add its all about a mobile web app.
Upvotes: 6
Views: 2071
Reputation: 6731
YUI3 AutoComplete helps me, this works good on my iphone
demo (( YUI2 )) :: http://developer.yahoo.com/yui/examples/autocomplete/ac_basic_xhr.html
tutorial (( YUI3 )) :: http://yuilibrary.com/yui/docs/autocomplete/
hope this helps n__n
Upvotes: 0
Reputation: 21785
Implementing autocomplete on mobile makes you have into account that user is more prone to typing errors, and also has a changing connection.
I made an autocomplete with jQuery UI autocomplete but it performed poorly on mobile. Maybe you could have a different experience with it.
See https://stackoverflow.com/a/6545344/1197775
Upvotes: 0
Reputation: 30481
The question is excellent. I'm just currently dealing with the very same design problem. Current auto-complete solutions work very poorly on mobile devices (if at all).
Luckily there is jQuery Mobile for which you can get jQM Autocomplete as a plugin. See also accompanying design notes.
Upvotes: 2
Reputation: 2383
Haven't used any autocomplete function for Sencha Touch myself but I know that there is a feature called "combobox" which has that functionality and Sencha Touch developers could use.
Upvotes: 0
Reputation: 795
there are in fact several.
jQuery UI has auto complete.
http://jqueryui.com/demos/autocomplete/
Ajax ControlToolkit has autocomplete control (for c#)
http://www.asp.net/AJAX/AjaxControlToolkit/Samples/AutoComplete/AutoComplete.aspx
Mootools auto complete
http://jsfiddle.net/fabiomcosta/eZpuL/3/
Hope it helps.
Upvotes: 0