Focusing on first row of table
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
Hi I am developing an webpage.In keypress event of a textbox some data are shown in an html table just below the textbox.When I press downarrow key,I want focus to be shifted to the first row of that table.Can anyone help me do this?
ARINDAM
-
Hi I am developing an webpage.In keypress event of a textbox some data are shown in an html table just below the textbox.When I press downarrow key,I want focus to be shifted to the first row of that table.Can anyone help me do this?
ARINDAM
use event.keyCode property to trap the down arrow key and then for the call a fucntion which transfer the focus wherever you want (obj.focus()) :):):)
Thanks & Regards Pete