Re: [Cppcms-users] upload progress
Brought to you by:
artyom-beilis
From: Aris S. <ari...@gm...> - 2010-11-07 02:45:14
|
another solution in the client side is using YUI 3 uploader, an swfuploader, which have BDS license. The YUI Uploader leverages Flash to provide file upload functionality beyond the native browser-based methods. Specifically, the Uploader allows for: 1. Multiple file selection in a single "Open File" dialog. 2. File extension filters to facilitate the user's selection. 3. Progress tracking for file uploads. 4. A range of available file metadata: filename, size, date created, date modified, and author. 5. A set of events dispatched on various aspects of the file upload process: file selection, upload progress, upload completion, data return, and upload errors. 6. Inclusion of additional data in the file upload POST request. 7. Faster file upload on broadband connections (due to the modified SEND buffer size). for a complete description, read on http://developer.yahoo.com/yui/3/uploader/ for single file upload example, read on http://developer.yahoo.com/yui/3/examples/uploader/uploader-simple.html# for multiple file, read on http://developer.yahoo.com/yui/3/examples/uploader/uploader-multiple.html another feature of YUI oploader is that "the file upload can be aborted" with calling "void cancel(fileID)" method, read on http://www.yuiblog.com/blog/2009/02/26/flickr-uploadr/ for the complete api, read on http://developer.yahoo.com/yui/3/api/Uploader.html |