6

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.

Bartosz Stankiewicz
  • 323
  • 1
  • 2
  • 10

7 Answers7

2

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.

jsalonen
  • 29,593
  • 15
  • 91
  • 109
1

jQuery UI has autocomplete.

ThiefMaster
  • 310,957
  • 84
  • 592
  • 636
0

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

Community
  • 1
  • 1
sites
  • 21,417
  • 17
  • 87
  • 146
0

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

AgelessEssence
  • 6,395
  • 5
  • 33
  • 37
0

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.

Bilal Murtaza
  • 785
  • 4
  • 9
0

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.

Ismailp
  • 2,333
  • 4
  • 37
  • 66
-2

jQuery UI library has a autocomplete widget. Check it here

KSDaemon
  • 366
  • 2
  • 9
  • Please check it yourself on mobile.... On my Kitkat Android 4.4.2 Phone, The autocomplete looks awfull..... – Ant Jan 16 '14 at 08:31