-
19 Sep 2012 6:25 AM #21
Problem with IE9 and File Upload widget
Problem with IE9 and File Upload widget
Excellent contribution. I have problems with IE9 is when selecting the file is not shown in the grid so that it can rise. Experiment with Motzilla and Google Chorme and works there, someone can give me a solution, thanks.
-
24 Sep 2012 6:56 PM #22
For me, I use following condition to decide if I should show alternative simple upload widget for unsupported browsers like IE.
PHP Code:
if(window.File && window.FileReader && window.FileList && window.Blob) {
// show the file upload widget
} else {
// show alternative simple upload window for IE
}
-
25 Sep 2012 1:37 AM #23
Drag n' drop to the grid view
Drag n' drop to the grid view
Thanks for the great work!
I applied it in my project and added drag-and-drop-file feature to this UX, allowing user to drag files into the grid body.
see: https://github.com/df1/extjs-upload-widget
drag-drop.jpg
-
25 Sep 2012 4:33 AM #24
Hello Df1 if an excellent widget, but revizalo with IE9 and see that it does not work. And the idea is not to limit in an application using a single Internet Explorer, I hope someone knows what the solution to this widget runs on any browser.
-
27 Sep 2012 4:52 AM #25
No one has a solution to the problem of handling FileUpload on IE, run tests on version 9 and is not veririfcar versions please test problems with version 8 and not work, but good contribution that serves itself and because Motzilla mail one has to restrict the end user is to use a single browser.
-
2 Dec 2012 2:00 AM #26
Upload Widget - Not Work with IE9
Upload Widget - Not Work with IE9
Hi,
Thanks for plugin. I like it !
Does anyone has fixed for IE9. I have no error but nothing displayed ...
Thanks for this sharingTamditi Karim
-
2 Dec 2012 11:18 PM #27
The widget uses th File API, which according to http://caniuse.com/#feat=fileapi is not supported by IE 9 or earlier. Maybe I should add a check and a popup warning. I'm afraid that it will be pretty hard to write a completeley cross-browser implementation, at least - not without some dirty hacks.
IE 10 has a "partial support", although I'm not sure what exactly that means.
-
30 Jan 2013 4:32 AM #28
-
12 Jun 2013 8:01 AM #29
I just released a new version of the widget, check the README and the CHANGELOG.
Several notes about the release:- it works best with Ext JS v4.2
- with Ext JS v4.0 and v4.1 there are some small rendering issues regarding the "Browse" button
- the new version has a bit different API and although I was trying to keep the backward compatibility, there may be breaking changes
- the widget is now ready for some new features like drag'n'drop, so I'll have a look at the implementation by df1
- still no support for IE9



Reply With Quote