Tagged Questions

3
votes
3answers
6k views

silverlight keydown event doesn't fire for arrow keys

I have a canvas inside a scrollview. I attached a keydown event handler to the scrollview. For most keys, the handler gets called. However, for the arrow keys, the handler does not get called. ...
1
vote
2answers
222 views

C# prevent default action on a listbox control when the right or left arrow keys are pressed

I have a listbox control in a windows app and I want to disable the default right and left arrow keydown event triggers. Currently when you press right or left arrows the selected item travels up and ...
1
vote
1answer
450 views

JQuery: keyboard navigation, triggering links using arrow keys

I have found a likely solution as shown below; I've altered the right arrow case to cause the link to be clicked, but it doesn't work. http://fiddle.jshell.net/JypsS/10/ Please advice.
1
vote
1answer
799 views

Use Left and Right Arrow Keys on keyboard to move onto next html page/last html page… NEED HELP!

I've been search the WWW for a while and can't seem to see what I'm looking for... I need a piece of code that will allow my page to move on when someone uses the arrow keys to move forward or back. ...
1
vote
4answers
6k views

Access Div Contents using Up and Down Arrow Keys using javascript

I have a Div Tag which contains 4 child Div Tags <Div id="Parent"> <div id="childOne">ChildOne </div> <div id="childOne">ChildTwo </div> <div ...
0
votes
2answers
593 views

Arrow keys and changing control's focus hang the application

I have a usercontrol that contains a FlowLayoutPanel (topdown flow) with a bunch of radiobuttons. The control exposes a CheckedChanged event that fires whenever one of the radiobuttons's check ...