PDA

View Full Version : keyboard shortcuts in 1.0 ...



jayj
23 Apr 2008, 3:48 PM
Any chance 1.0 will support keyboard shortcuts like KeyMap in Ext JS?

sheesh-kebab
23 Apr 2008, 4:22 PM
yeah, and some 508 and ARIA (http://www.w3.org/WAI/intro/aria) compatibility support wouldn't be bad - I can't really use the library in my space without that stuff unfortunately.

gwt 1.5 actually now supports ARIA a bit better - but still far from perfect. Ext GWT and Ext Js don't actually seem to support it all.

Rvanlaak
3 Jun 2009, 1:04 AM
Is there any info available over howto implement keyboard shortcuts? I need multi-key shortcuts like CTRL+S

csergiu77
6 Jul 2009, 2:35 PM
I need that as well....
Anyone can help us ?

FireGlow
7 Jul 2009, 12:56 PM
Well you could create a class that reacts on keyboardDown and Up and that stores this events in a list...

after every down you add the event to your actually "pressed" keys and compare the list if CTRL + S is inside... if so fire your event.

If KeyBoardUp coming you can delete the key out of your list.