keyboard shortcuts

2012-10-16 Thread vanessa vanessa
Hi all, I have to implement specefic keyboard shortcuts to my web application. And I want to ask if GWT provide interfaces to deal with such a requirement. If it's the case what are the limits of these shortcuts ? The compatibility with some browsers is an important point. Any help wou

Re: keyboard shortcuts

2012-10-18 Thread Matthew Sojka
override this method in your implementation. I have not used to for determining combinations of keys (Ctrl+, function keys, etc.) but it may work. - Matt On Tuesday, October 16, 2012 3:50:28 PM UTC-4, vanessa vanessa wrote: > > Hi all, > > I have to implement specefic keyboard shortcu

Re: keyboard shortcuts

2012-10-18 Thread Jens
You can globally listen for all browser events by using Event.addNativePreviewHandler(). Inside the handler you can globally check for shortcut keys on keydown / keyup events. But be aware that there are inconsistencies between browsers for the return values of NativeEvent.getKeyCode() and Nat

Re: keyboard shortcuts

2012-10-20 Thread vanessa vanessa
Thanks for your anwwers. Le jeudi 18 octobre 2012 22:21:55 UTC+1, Jens a écrit : > > You can globally listen for all browser events by using > Event.addNativePreviewHandler(). Inside the handler you can globally check > for shortcut keys on keydown / keyup events. > > But be aware that there ar

Hosted Mode - Keyboard Shortcuts?

2009-09-08 Thread Geoffrey Wiseman
Are there keyboard shortcuts in the hosted mode browser? In particular, for 'Refresh'? ⌘R doesn't do the trick in OS X. I haven't had a lot of luck searching for GWT hosted mode browser keyboard shortcuts in general. There's not

keyboard shortcuts with CTRL

2010-09-01 Thread levier
Hi all, I'm developing an enterprise application and all users scream for keyboard shortcuts. And not shortcuts like you see in GMail (focus some widget, press c to compose a new mail etc) but true CTRL+N, CTRL+S like you see in a desktop application. I thought it really couldn't be do

Gmail-like keyboard shortcuts possible?

2009-06-20 Thread Manuel
What's the best way to implement Gmail-like keyboard shortcuts? I'd like to get all keypresses, except those in text boxes. I've searched the archives, and I can't find a good way to do this. Thanks, Manuel --~--~-~--~~~---~--~~ You r

Re: keyboard shortcuts with CTRL

2010-09-30 Thread Marcin Misiewicz
I'm also interested in that topic. Does anybody has some experience with keyboard shortcuts in gwt. I'd like to have at least one application wide shortcut for opening a log panel and a few shortcuts dependent of what panel actually has focus on. On 1 Wrz, 19:13, levier wrote

Re: keyboard shortcuts with CTRL

2010-10-04 Thread Marcin Misiewicz
loggerWindow.show(); } }); } } }); CTRL+l oraz CTRL+L - opens the window with log messages. On 1 Paź, 00:35, Marcin Misiewicz wrote: > I'm also interested in that topic. Does anybody has some ex

Re: keyboard shortcuts with CTRL

2010-10-04 Thread dushyant bing
}); > > CTRL+l oraz CTRL+L - opens the window with log messages. > > On 1 Paź, 00:35, Marcin Misiewicz wrote: > > I'm also interested in that topic. Does anybody has some experience > > with keyboard shortcuts in gwt. > > > > I'd like to hav

Re: keyboard shortcuts with CTRL

2014-08-08 Thread Rahul Agrawal
- opens the window with log messages. > > On 1 Paź, 00:35, Marcin Misiewicz wrote: > > I'm also interested in that topic. Does anybody has some experience > > with keyboard shortcuts in gwt. > > > > I'd like to have at least one application wide shortcut f

Re: Gmail-like keyboard shortcuts possible?

2009-06-21 Thread Thomas Broyer
On 20 juin, 18:23, Manuel wrote: > What's the best way to implement Gmail-like keyboard shortcuts? > > I'd like to get all keypresses, except those in text boxes. > > I've searched the archives, and I can't find a good way to do this. Two solutions immediate

Re: Gmail-like keyboard shortcuts possible?

2009-06-22 Thread Manuel
On Jun 21, 4:51 pm, Thomas Broyer wrote: > On 20 juin, 18:23, Manuel wrote: > > > What's the best way to implementGmail-like keyboard shortcuts? > > > I'd like to get all keypresses, except those in text boxes. %snip > Two solutions immediately come