vote up 1 vote down star

Hi,

I have one autocomplete search, in which by typing few characters it will show all the names, which matches the entered character. I am populating this data in the jsp using DIV tag, by using mouse I'm able to select the names. But I want to select the names in the DIV tag to be selected using the keyboard up and down arrow. Can anyone please help me out from this.

Thanks, Ram

flag

9 Answers

vote up 1 vote down

I assume that you have an input which handles the input.

map onkeyup-eventhandler for that input in which you read out event.keyCode, and do stuff when it's the appropriate keycodes for up/down-arrow (38, 40), to keep a reference to which node (item in your div) you move the focus to.

Then call the same handler when you hit enter (keyCode 13) as you do onclick.

It's hard to give a coding-example because it highly depend on context, but a tip on how to navigate through your div is to make us of .nextSibling and .previousSibling, aswell as .firstChild and .childNodes.

link|flag
vote up 0 vote down

Long time since I did this, but I guess you can use event.keyCode.

If the values returned are 38 and 40, then the user has pressed the up and down arrows respectively.

You then have to select the row above or below your current position. How to select the row would depend on your particular situation.

link|flag
can u plz give some example to how to do th is.... – Jon Galloway Nov 12 '08 at 11:20
Ok... here goes.. function showKeyCode(e) { alert("keyCode for the key pressed: " + e.keyCode); } and in your DIV tag, you'll call the above method like this: onkeydown="showKeyCode(event);" Guess this should work. – Shivasubramanian A Nov 13 '08 at 5:35
vote up 0 vote down

Hay Rammohan

Are you able to fix the problem... can you please post the sample code if you have done it. I am a newbie to Javascript. I tried to implement what jishi mentioned, but I am going nowhere.

Thanks George

link|flag
vote up 0 vote down

Use the onkeydown and onkeyup events to check for keypresses in your results div.

var keynum = 0;

if(window.event) { keynum = e.keyCode; }  // IE (sucks)
else if(e.which) { keynum = e.which; }    // Netscape/Firefox/Opera

if(keynum == 38) { // up
    //Move selection up
}

if(keynum == 27) { // down
    //Move selection down
}

if(keynum == 13) { // enter
    //Act on current selection
}

I use a listbox inside of a div for autosuggest results. Then, on the listbox, set

onkeyup = "checkKeys(this);"
onblur  = "hideSearchResults(this);"
link|flag
vote up 0 vote down

Hi EndangeredMassa

Thanks a lot for you reply. My problem even before this. Just like the Rammohan, I am trying to create a Autofill textbox. When the user types in few characters, i display the values in a DIV tag. Now if user clicks on down arrow, I need to bring his focus to the DIV tag and select the first item in the DIV tag. As I said earlier, I am a newbie to Javascript side. Any help will be greatly appreciated.

Thanks a lot George

link|flag
vote up 0 vote down

Hi guys I hope my solution may some what fix the problem

div.active{ background: lightblue }

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38

var scrolLength = 19; function autocomplete( textBoxId, containerDivId ) { var ac = this; this.textbox = document.getElementById(textBoxId); this.div = document.getElementById(containerDivId); this.list = this.div.getElementsByTagName('div'); this.pointer = null; this.textbox.onkeydown = function( e ) { e = e || window.event; switch( e.keyCode ) { case 38: //up ac.selectDiv(-1); break; case 40: //down ac.selectDiv(1); break; } } this.selectDiv = function( inc ) { if(this.pointer > 1){ scrollDiv(); } if(this.pointer == 0) document.getElementById("Parent").scrollTop = 0; if( this.pointer !== null && this.pointer+inc >= 0 && this.pointer+inc

but the problem here is when i use the mouse to scroll its fine.. but after mouse event when i try to scroll using up/down arrow keys a problem comes.. plz let me know a better solution..

Thank you

link|flag
vote up 0 vote down

copy and paste this piece of code and try..

div.active{ background: lightblue }

1 2 3 4 5 6 7 8 9 10

var scrolLength = 19; function autocomplete( textBoxId, containerDivId ) { var ac = this; this.textbox = document.getElementById(textBoxId); this.div = document.getElementById(containerDivId); this.list = this.div.getElementsByTagName('div'); this.pointer = null; this.textbox.onkeydown = function( e ) { e = e || window.event; switch( e.keyCode ) { case 38: //up ac.selectDiv(-1); break; case 40: //down ac.selectDiv(1); break; } } this.selectDiv = function( inc ) { if(this.pointer > 1){ scrollDiv(); } if(this.pointer == 0) document.getElementById("Parent").scrollTop = 0; if( this.pointer !== null && this.pointer+inc >= 0 && this.pointer+inc
link|flag
vote up 0 vote down

Hi Guys, the problem is resolved now, i enable the up and down arrows in my javascript, through which i am popukating the div..

Thanks, Rammohan

link|flag
vote up 0 vote down

Rammohan can you paste your solution please? thanks

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.