Click here to Skip to main content
Click here to Skip to main content

Auto-complete Control

By , 16 May 2005
 

Introduction

Most auto-complete textboxes may have a reverse effect on end-users. Instead of helping them get things done faster, they get irritated by design flaws made by the programmer. (Admittedly, I've made such design flaws too.)

I got to learn this lesson when designing my first auto-complete edit control, found here[^]. Although it seemingly looks intuitive, I forgot to consider the fact that what if the end-user wanted to type just 'ap' but the 'ple' appears out of nowhere? This means that the end-user would then have to hunt for, and press the delete key.

After seeing how GMail made its auto-complete, I took the idea and implemented my own version of the auto-complete control.

Auto-complete textbox control:

  • Timeout: 3000ms
  • Delimiter: ; and ,
  • Options: ('an apple', 'alligator', 'elephant', 'pear', 'kingbird', 'kingbolt', 'kingcraft', 'kingcup', 'kingdom', 'kingfisher', 'kingpin')

How does it work?

The important event that will fire whenever the user press any key is onkeydown. The onkeydown event handles all the normal character input and is in charge of creating the auto-complete list. It also handles keys like 'up', 'down' and 'enter'.

Using the JavaScript regexp() object, the script will run through the array containing the keywords and match them one by one. After which, a DIV will be created dynamically using document.createElement(). Finally, when the user presses the 'Enter' key, the DIV will be detached and the input box updated.

The user can also select the options using the mouse. This is done through three events: onmouseover, onmouseout, and onclick.

How do you implement it into your own textbox?

Firstly, include the .js file into your script:

<script language="javascript" type="text/javascript" 
         src="actb.js"></script>

Next, create an array (in JavaScript) containing the keywords:

customarray = new Array('apple','pear','mango','pineapple', 
         'orange','banana','durian', 'jackfruit','etc');

Apply the widget to your textbox using JavaScript:

actb(document.getElementById('textbox_id'),customarray);

And you're done!

Tweakability

This auto-complete edit control has some customizable features:

/* ---- Variables ---- */
// Autocomplete Timeout in ms (-1: autocomplete never time out)
this.actb_timeOut = -1;
// Number of elements autocomplete can show (-1: no limit)
this.actb_lim = 4;
// should the auto complete be limited to the beginning of keyword?
this.actb_firstText = false;
// Enable Mouse Support
this.actb_mouse = true;
// Delimiter for multiple autocomplete.
// Set it to empty array for single autocomplete
this.actb_delimiter = new Array(' ',',');
// Show widget only after this number of characters is typed in.
this.actb_startcheck = 1;
/* ---- Variables ---- */


/* --- Styles --- */
this.actb_bgColor = '#888888';
this.actb_textColor = '#FFFFFF';
this.actb_hColor = '#000000';
this.actb_fFamily = 'Verdana';
this.actb_fSize = '11px';
this.actb_hStyle = 'text-decoration:underline;font-weight="bold"';
/* --- Styles --- */ 

this.actb_keywords = new Array();

The styles are pretty self-explanatory; tweak the values for best results for your own website. Firstly, the variable actb_timeOut controls how long the auto-complete list's timeout should be (i.e., after x ms, the list will disappear). By default, it is set to -1, which represents no timeout.

Next, the variable actb_lim limits the number of elements the list will show, to prevent over-spamming. If you do not want to set any limit, set it to -1.

Thirdly, the actb_firstText variable determines whether the match with the keywords-array should only start from the first character or if the match can be any arbitrary match within the keyword. For example, if firstText is set to true, then a given string "ello" will match with "hello".

Also, the actb_mouse variable determines whether the control should respond to mouse events. Mouse support works when user clicks on the auto-complete list that appears.

The actb_delimiter variable allows for the much requested multiple auto-complete feature. Set a custom delimiter, or even multiple delimiters like semi-colon (;) or comma (,), and the engine will complete words separated by the given delimiter.

Lastly, actb_startcheck controls the number of characters that must be typed in before the textbox will display the control. Thanks to flyasfly for this suggestion.

Implementations

As of version 1.3, all of the above mentioned are public variables. This can be useful in emulating controls like Google Suggest. When you apply the control to your textbox using the actb function, it returns an object.

Changing the autocomplete list

obj = actb(document.getElementById('textbox_id'),customarray);
// ... after some time ...
obj.actb_keyword = new Array('this','is','a','new','set','of','keywords');

Multiple auto-complete textboxes

obj = new actb(document.getElementById('textbox_id'),customarray);
obj2 = new actb(document.getElementById('textbox2_id'),customarray2);

Multiple textboxes (different options)

obj = new actb(document.getElementById('textbox_id'),customarray);
obj.actb_mouse = false; // no mouse support
obj2 = new actb(document.getElementById('textbox2_id'),customarray2);
obj2.actb_startcheck = 2; // start actb only after 2nd character

Todo

  • Add second array (customarrayDesc) for display description in the list (ex => [an apple: it's an apple] instead of [an apple]. Suggestion by angelo77).
  • Many other features suggested by CPians, some of which might be beyond me at the moment but I'll still try my best!

Tested browsers

  • Internet Explorer 6.0.28
  • Mozilla Firefox version 1.0.3

Finally...

Thank you to all of you who have supported, modified, and offered your suggestions to the control! I'm extremely apologetic for the inactiveness of this project because of schoolwork etc. However, I still try my best to work on it whenever anyone has a new feature request!

License

This control will be, from effect of version 1.1, published under Creative Common License [^]

Change Log

  • 1.31: 12/5/2005
    • Fix: Fixed a bug with actb_bgColor styles due to typo.
    • Fix: Now caret does not move away (Firefox) when user presses Enter or tab.
  • 1.3: 8 May 2005
    • Added: actb_startcheck has the number of characters that start the widget control. Thanks to flyasfly for suggestion.
    • Change: All 'tweakabilities' and styles have been changed to public variables.
    • Fix: Fixed an IE-specific bug which prevents the caret position of textarea to be retrieved. Now widget works for textarea too.
  • 1.2: 9 Apr 2005
    • Change: Converted the code of actb widget to OOP.
    • Fix: Mouse click bug that disallows autocomplete control from deleting itself.
    • Added: the keywords array (actb_keyword) becomes a public variable, so it can be modified from the parent script.
  • 1.1: 6 Dec 2004
    • Fix: Metacharacters escaped before parsing with RegExp.
    • Added: Multiple delimiters.
    • Added: Tab now completes the text like Enter.
    • Change: Now, only an event is needed for the control to work; the rest are attached dynamically.
    • Fix: Bugs with caret position in Firefox: originally, 'up' and 'down' keys changed caret position in the textbox for Firefox. This problem has been rectified.
  • 1.0: 23 Nov 2004
    • Fix: some miscellaneous bugs in mouse support (actb_removedisp() cannot be executed properly).
    • Fix: actb_timeout now works fine with mouse support on.
    • Added: When user moves the mouse over each individual option, the option will be highlighted.
    • Added: Multiple auto-complete! This works even if you're editing previous "fields".
  • 0.9: 6 Oct 2004
    • Fix: A bug concerning clientHeight which apparently Mozilla does not support. Thanks Cameron Smith for pointing out.
    • Added: This control now supports phrases with spaces in between. Thanks to Miguel Vieira.
    • Added: This control has mouse support. Thanks to Alecacct and everyone for the idea.
  • 18 Aug 2004
    • Basic engine created.
    • Article posted!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

zichun
Singapore Singapore
Member
I'm young and cool Smile | :)

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
Questionactb inside <div style="overflow:scroll"; (...)memberlekhu1 Feb '13 - 0:09 
GeneralMy vote of 1memberhsnfrz3 Dec '12 - 2:00 
QuestionMax Characters?memberTAZmd2 Aug '12 - 22:16 
Questionhow do i assign java script to PHP ( am new to scripting plz help me)memberuttam_patil20 Jun '12 - 1:13 
QuestionAmazingmemberMember 904826629 May '12 - 22:27 
Questionasdfmemberasdfjaja20 Mar '12 - 9:11 
QuestionIs it possible with Drop Down(select)memberjawaharraj8916 Feb '12 - 23:00 
GeneralMy vote of 5memberhomeworx17 Jan '12 - 17:56 
Questionbug in this codememberfirozeshaikh1112 Nov '11 - 20:22 
QuestionForce selecting from the listmemberMember 81729919 Nov '11 - 3:51 
Questionautocomplet with external javascriptmemberMember 82223518 Sep '11 - 5:13 
QuestionControl width of dropdownmemberHenryUH9 Aug '11 - 17:22 
QuestionHandling the ESC keymemberTeamTerradactyl6 Jul '11 - 19:14 
QuestionAuto complete field with 2 different value.memberneedphp8 May '11 - 16:00 
AnswerRe: Auto complete field with 2 different value.memberTeamTerradactyl6 Jul '11 - 19:21 
GeneralAlternativesmemberCstruter28 Apr '11 - 22:40 
Here are some alternatives that might be useful.
 
Create your own autocomplete textbox
ASP.NET(C#) : Autocomplete TextBox - Part 1[^]
 
Using Microsofts autocomplete extender control
 
ASP.NET(C#) : Autocomplete TextBox - Part 2[^]
GeneralMultiple AutoComplete doesn't workmemberMember 775096022 Mar '11 - 22:25 
GeneralRe: Multiple AutoComplete doesn't workmemberPeterb738 Apr '11 - 18:36 
GeneralRe: Multiple AutoComplete doesn't workmemberShaun Baines12 Apr '11 - 15:00 
GeneralRe: Multiple AutoComplete doesn't workmemberjmdanial18 Mar '13 - 4:04 
GeneralAutocomplete upon typing in a textboxmemberHenryUH11 Mar '11 - 6:22 
GeneralFirefox + ChromememberMember 740954117 Dec '10 - 7:45 
GeneralDo not highlight first row when autocompleting (just like google)memberperuperuperuperu3 Dec '10 - 7:28 
GeneralRe: Do not highlight first row when autocompleting (just like google)memberppsanil5 Dec '10 - 0:29 
GeneralRe: Do not highlight first row when autocompleting (just like google)memberperuperuperuperu6 Dec '10 - 6:13 
QuestionNewbee Javascript / ASP & SQL Lookup Issue Please HelpmemberPaul Hayman2 Oct '10 - 20:36 
AnswerRe: Newbee Javascript / ASP & SQL Lookup Issue Please HelpmemberPaul Hayman3 Oct '10 - 5:42 
GeneralMy vote of 5memberkiran Gabhane30 Sep '10 - 4:06 
GeneralMy vote of 5memberbhatti6319 Sep '10 - 23:50 
Generalmore than one keywords searchmemberEyik ant25 Jul '10 - 16:25 
QuestionUsing actb.js with an Array of Linksmemberwootini13 Jul '10 - 9:02 
Generaldoesn't work on Mozila Firefoxmemberimranscode17 Jun '10 - 1:10 
GeneralRe: doesn't work on Mozila FirefoxmemberEyik ant4 Jul '10 - 23:58 
GeneralRe: doesn't work on Mozila Firefoxmemberimranscode5 Jul '10 - 9:20 
GeneralRe: doesn't work on Mozila Firefoxmembertemp64418 Jul '10 - 10:24 
GeneralMy vote of 1memberhoodedperson7014 Jun '10 - 3:27 
GeneralRe: My vote of 1membermilanmotavar888817 Jun '10 - 0:21 
Generalconvert charsmembernapraviculom22 May '10 - 4:02 
GeneralFull dropdown list on focusmemberTony_P11 May '10 - 5:01 
GeneralShowing result array in a different textfieldmemberEyik ant26 Apr '10 - 15:56 
Questionautocomplete is not working when customarray length exceeds 700 valuesmemberchandralekha15 Apr '10 - 21:09 
AnswerRe: autocomplete is not working when customarray length exceeds 700 valuesmemberMember 448948923 Apr '10 - 0:33 
GeneralautoComplete=offmembereGRajesh13 Apr '10 - 1:19 
GeneralAuto Complete Textbox in Classic ASPmembersyam@tnt4 Dec '09 - 0:44 
GeneralRe: Auto Complete Textbox in Classic ASPmemberpoorwierdo10 Apr '10 - 12:06 
Questioncan I do multi select with your code?membertaviram12322 Nov '09 - 3:06 
GeneralFantasticmemberNavin C. Pandit1 Nov '09 - 18:52 
GeneralText box size increases when the text is bigmemberamitsplash20 Oct '09 - 22:48 
GeneralDEPRECATED!memberegoman698 Oct '09 - 12:27 
Generalmouse click stops working when ajax used to update listmemberMember 452398723 Sep '09 - 1:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 16 May 2005
Article Copyright 2004 by zichun
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid