Pavel

Results 225 comments of Pavel
trafficstars

Progress events only occur on AJAX uploads; Internet Explorer only supports them since 10 (as seen on the compatibility list right-side) and so progress reporting will only work in IE...

The point about overlapping CSS zones is that it provides legacy (and by now I would say _very legacy_) support for no-D&D upload (not FF/Chrome/Safari/Opera). It works by creating an...

Hardly any problem there - simply create new FileDrop zone for every folder icon you have. A zone isn't necessary that standard `...` markup - it can be bound to...

First off, **sendXHR** is now **xhrSend** (since FileDrop v2), by analogy with added **xhrSetup**. The former still works but is deprecated. Second, you're not using FileDrop right - check included...

Are you picking the same file second time? The `` element that the drop zone is using under the hood is firing `onchange` only when the picked file has changed.

Separate scripts are too much trouble to maintain. As for the modern/legacy switch there's no notion of legacy as such in FileDrop. There is very little code that is intended...

Which options you want to change? You construct the URL yourself when uploading via iframe or sendTo so you don't have to change drop zone options for that.

> `$(“#dropZone”).filedrop({ url: ‘https://www.abc.com/FileUpload?projectId=OldValue’, etc.});` You are doing it wrong. FileDrop has no option `url` - it has `iframe.url` option if that's what you want to set. However, review examples...

Dragging stuff out of an application is tricky and depends on that application. It uses Windows drag & drop mechanism but it has many flavors. For example, sometimes it would...

What do you mean by "reset"? Unbind it from the zone? This is currently not implemented (if you want to remove event listeners simply reinsert the zone node into the...