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

Auto select (Incremental search, Auto-complete) an item from a dropdown as user keys in

By , 23 Sep 2008
 

Sample screenshot

Introduction

Normally, HTML does not support nearest match. It always treats each key stroke as the starting of a new search. But, that is useless. If I type 'C', it will go to the first item that starts with C; if I type 'O' immediately, it will go to the first item that starts with 'O'. But in this implementation, it will go to 'CO'.

If the user misspelled, the user can use the backspace key to delete the char 'O' and type another letter to select another item. The user can wait for 3 seconds to start a fresh search, or use backspace to delete the entire search key, or shift delete to restart again.

It finds the nearest possible match. So, it does not need to be in any order.

  1. Just include the .js file in the target HTML:
  2. <script language="JavaScript" src="dropdown.js"></script>
  3. Add these events to your dropdown field:
  4. onfocus="this.enteredText='';" onkeydown="return handleKey();" 
      onkeyup="event.cancelbubble=true;return false;" onkeypress="return selectItem();"

    For example:

    <select name="test" onfocus="this.enteredText='';" onkeydown="return handleKey();" 
      onkeyup="event.cancelbubble=true;return false;" onkeypress="return selectItem();">
    • onfocus resets the search text.
    • onkeydown handles certain keys (left, right, top, down, shift, delete, backspace) and takes the appropriate action.
    • onkeypress handles the selection of an item from the list.
    • onkeyup ignores the event as onkeypress has already handled the key stroke.
  5. Open the HTML file using IE.
  6. Type 'a', it will take you to the first item that starts with 'a'. Then, type 'b'; this will take you to the first item that starts with 'ab'. This uses a nearest match algorithm. So, the list does not need to be in any order.
    1. The user can search a string within a dropdown list.
    2. It automatically selects the list item that starts with the search key.
    3. The user can use backspace to delete a char before the current index from the search key.
    4. The user can use the delete button to delete a char after the current index from the search key.
    5. The user can use left or right arrow keys to move back and forth over the search key, and use delete or backspace to delete a char; the script will automatically find the item in the list, or enter a new char from the current index.
    6. Pressing the Shift and Delete keys will remove the search key and start over the search again.
    7. The user can see the search key on the Windows status bar. It shows the current index too.

I am adding Hugh Nelson's suggestion also here, so that it is available for every one. If you want to change all the dropdowns in a page to have this functionality, call the following in the onload event:

function setSelectEvents() {
    // set javascript event attributes
    // for all select items in the current page
    var selects = document.getElementsByTagName("select");
    var arrOnfocus = new Array(); // array of onfocus functions
    var arrOnkeydown = new Array(); // array of onkeydown functions
    var arrOnkeyup = new Array(); // array of onkeyup functions
    var arrOnkeypress = new Array(); // array of onkeypress functions

    for (var i = 0; i < selects.length; i++) {
        // we need to ensure that
        // we don't overwrite any existing function

        // save index to array as an element attribute
        // (using i directly did not work)
        selects[i].title = i;

        // onfocus
        if(typeof(selects[i].onfocus) == 'function') {
        // there is a pre-existing function
            // save pre-existing function
            arrOnfocus[selects[i].title] = selects[i].onfocus;
            selects[i].onfocus = 
              function() { arrOnfocus[this.title](); this.enteredText=''; }
              // set event to call our code plus the pre-existing function
        }
        else { // there is no pre-existing function
            selects[i].onfocus = function() { this.enteredText=''; }
        }

        // onkeydown
        if(typeof(selects[i].onkeydown) == 'function') {
        // there is a pre-existing function
            // save pre-existing function
            arrOnkeydown[selects[i].title] = selects[i].onkeydown;
            selects[i].onkeydown = 
              function() { arrOnkeydown[this.title](); return handleKey(); }
              // set event to call our code plus the pre-existing function
        }
        else { // there is no pre-existing function
            selects[i].onkeydown = function() { return handleKey(); }
        }

        // onkeyup
        if(typeof(selects[i].onkeyup) == 'function') {
        // there is a pre-existing function
            // save pre-existing function
            arrOnkeyup[selects[i].title] = selects[i].onkeyup;
            selects[i].onkeyup = 
              function() { arrOnkeyup[this.title](); 
                           event.cancelbubble=true;return false; }
              // set event to call our code plus the pre-existing function
        }
        else { // there is no pre-existing function
            selects[i].onkeyup = 
              function() { event.cancelbubble=true;return false; }
        }

        // onkeypress
        if(typeof(selects[i].onkeypress) == 'function') {
        // there is a pre-existing function
            // save pre-existing function
            arrOnkeypress[selects[i].title] = selects[i].onkeypress;
            selects[i].onkeypress = 
               function() { arrOnkeypress[this.title](); return selectItem(); }
               // set event to call our code plus the pre-existing function
        }
        else { // there is no pre-existing function
            selects[i]. &#246;nkeypress = function() { return selectItem(); }
        }
    }
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

senthil karuppaiah
Web Developer
United States United States
Member
Fourteen years of progressive experience in Software Product Development, tactical planning, project and client management, demonstrated success in leadership, critical thinking, problem solving and analysis. Diverse knowledge and experience with multiple development methodologies, reengineering, software engineering, and integration of heterogeneous systems.

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   
Newsmodified versionmemberMember 35920213 Nov '08 - 4:09 
GeneralOrder of Selection. Pls respond. [modified]memberNav1120 May '08 - 3:19 
GeneralRe: Order of Selection. Pls respond.memberMember 35920213 Nov '08 - 21:28 
GeneralRe: Order of Selection. Pls respond.memberrajapandian8114 Dec '09 - 3:51 
GeneralCommercial usagememberEmerson Takahashi20 Mar '08 - 6:20 
GeneralJavaScriptmemberVinug29 Nov '07 - 18:47 
GeneralChange all select items in a pagememberhugh.nelson5 Sep '07 - 18:48 
GeneralGreat simple solutionmemberhugh.nelson4 Sep '07 - 13:58 
QuestionWhat are these? (Ele.lastEntered, ele.EnteredText )memberckwizard7719 Jul '07 - 5:50 
AnswerRe: What are these? (Ele.lastEntered, ele.EnteredText )membersenthil karuppaiah6 Aug '07 - 6:18 
Generalproblem on old machinesmemberzum12327 Jun '07 - 3:04 
GeneralRe: problem on old machinesmembersenthil karuppaiah3 Jul '07 - 6:41 
GeneralRe: problem on old machinesmembertkrafael_net24 Sep '08 - 6:25 
GeneralProblems with status in IE 7membermrortner10 Apr '07 - 6:38 
GeneralRe: Problems with status in IE 7membermrortner10 Apr '07 - 6:41 
GeneralBrowser LimitationsmemberTBBASEFLUG20 Nov '06 - 5:22 
Generalproblem with too many optionsmemberPranav Kaushik18 Aug '06 - 2:53 
GeneralRe: problem with too many options [modified]membersenthil karuppaiah18 Aug '06 - 19:03 
GeneralRe: problem with too many optionsmemberPranav Kaushik18 Aug '06 - 22:22 
GeneralRe: problem with too many options [modified]membersenthil karuppaiah19 Aug '06 - 4:34 
GeneralTermmembernorm .net6 Aug '06 - 21:34 
GeneralRe: Termmembersenthil karuppaiah7 Aug '06 - 6:48 
AnswerIncremental Searchmemberrlivelyppk8 Aug '06 - 12:26 
GeneralRe: Incremental Searchmembernorm .net8 Aug '06 - 20:42 
GeneralRe: Incremental Searchmembersenthil karuppaiah9 Aug '06 - 5:59 

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 23 Sep 2008
Article Copyright 2006 by senthil karuppaiah
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid