Javascript How-ToAsk your "How do I do this with Javascript?" questions here.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the Javascript How-To section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
I have problem with a the behavior of the tabkey and gridcontrols. The client wants a user friendly website where the mouse should be use less as possible.
The site consists of 2 gridcontrol and 1 tabcontrol. When the page loads the first row of the gridcontrol must gain focus. The user must pass all the rows with the arrow keys(up and down). The standard behavior of the tabkey in the gridcontrol is to pass to the next row. I want to scroll with the arrowkeys in the grid and the tabkey should pass on to the next control and not to the next row in the grid. Can anybody help me with this issue?
Hi cdw90nl!!
Are you trying to do it with Javascript, then you need to attach an event and trap those events,based on those keys(up down arrow keys) you can change the behavior of the tab and arrow keys.
Hope this will help you