Hi faxe360,
You can get the progress info in API "CuteWebUI_AjaxUploader_OnProgress".
- //Fires when new information about the upload progress for a specific file is available.
- function CuteWebUI_AjaxUploader_OnProgress(enable,filename,begintime,uploadedsize,totalsize)
- {
- var hidden=this;
- if(enable)
- {
- if(totalsize)
- {
- document.title=filename+" - "+Math.floor(100*uploadedsize/totalsize)+'%'
- }
- else
- {
- }
- }
- else
- {
- }
- return false; //hide the default UI.
- }
More API please refer to http://www.ajaxuploader.com/document/scr/html/JavaScript-API.htm
Regards,
Ken