PDA

View Full Version : keyboard shortcuts in 1.0 ...


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

sheesh-kebab
04-23-2008, 08: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
06-03-2009, 05:04 AM
Is there any info available over howto implement keyboard shortcuts? I need multi-key shortcuts like CTRL+S

csergiu77
07-06-2009, 06:35 PM
I need that as well....
Anyone can help us ?

FireGlow
07-07-2009, 04: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.