Local filesystem access

2011-06-14 Thread gwt_user
Hi, We need to be able to access physical files system from GWT application. Does anyone have any suggestions? Thanks! -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-toolkit@googlegroups.c

Re: Local filesystem access

2011-06-15 Thread gwt_user
Thanks Juan! Does anyone has any other recommendation? Thanks in advance! On Jun 14, 10:01 am, Juan Pablo Gardella wrote: > I think you can use gwt4air (use flash) . > > Juan > > 2011/6/14 gwt_user > > > > > > > > > Hi, > > > We need

How to catch mouse events on the Tree?

2008-09-10 Thread gwt_user
I want to catch double click and right click events on the tree items. Here is the tree: Tree tree = new Tree(){ public void onBrowseEvent(Event e) { GWT.log("Browse event happened", null); if(DOM.eventGetType(e) ==

Re: How to catch mouse events on the Tree?

2008-09-10 Thread gwt_user
I forgot to mention that I am using GWT 1.5.2. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to Google-Web-Toolkit@googlegroups.com To unsubscribe from t

Re: How to catch mouse events on the Tree?

2008-09-11 Thread gwt_user
Ok, I figured that out. 1. I misspelled 'onBrowseEvent' - it must be 'onBrowserEvent'. 2. I did not call super.onBrowserEvent() in onBrowserEvent. The code that works is: Tree tree = new Tree(){ public void onBrowserEvent(Event e) { { sinkEvents

Re: Handling mouseEvents from TreeItems

2008-09-11 Thread gwt_user
I had similar puzzle, check my post: http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/32533c3ef4cebd8a/b06fc291936cfe8d#b06fc291936cfe8d On Sep 10, 10:30 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hello , > >   I have a tree implemented on VerticalPanel and i nee