Re: Upload a file using Drag and Drop on the Browse button in the Browser

2014-10-31 Thread Drew Spencer
Hi Surinaidu! I can tell you how I do it. Define a ChangeHandler like this: ChangeHandler changeHandler = new ChangeHandler() { @Override public void onChange(ChangeEvent event) { uploadFile(); } }; In my View I have the FileUpload field called 'uploadField'. I simply attac

Re: Upload a file using Drag and Drop on the Browse button in the Browser

2014-10-30 Thread Surinaidu Majji
I found one of the library from https://github.com/laaglu/lib-gwt-file-test, Please tell me can i use this for my above purpose. On Thursday, October 30, 2014 5:05:17 PM UTC+5:30, Surinaidu Majji wrote: > > Hello All, > We are using file upload from the gwt but i want to upload the file by > dr

Upload a file using Drag and Drop on the Browse button in the Browser

2014-10-30 Thread Surinaidu Majji
Hello All, We are using file upload from the gwt but i want to upload the file by drag and drop in the browser. It is working fine with chrome browser but not working with Firefox because in Chrome it is showing choose File and Firefox it is showing Browse option. How can i upload the file in th