Side navigation
#3423 closed enhancement (invalid)
Opened September 29, 2008 02:56PM UTC
Closed February 05, 2010 08:34PM UTC
Last modified March 14, 2012 11:40PM UTC
[autocomplete] TAB KEY
Reported by: | ancestrack | Owned by: | joern |
---|---|---|---|
Priority: | minor | Milestone: | 1.3 |
Component: | plugin | Version: | 1.2.6 |
Keywords: | autocomplete | Cc: | |
Blocked by: | Blocking: |
Description
About TAB KEY :
tab navigation in a form is "broken" when using autocompletion
because tab key is programmed to do a select in the autocompletion list.
My suggestion :
TAB KEY to have same behaviour as RETURN when selectFirst option is ON
and as ESC when OFF.
jquery.autocomplete.js 1.0.2 modified as follow :
line #135 :
case options.selectFirst && KEY.TAB:
case KEY.RETURN:
line #145 :
case !options.selectFirst && KEY.TAB:
case KEY.ESC: