Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
PHP File Uploader
»
Re: Javascript event when all files are uploaded?
Javascript event when all files are uploaded?
Last post 04-05-2011, 2:46 AM by
Guttorm
. 2 replies.
Sort Posts:
Oldest to newest
Newest to oldest
Previous
Next
04-04-2011, 4:47 AM
66978
Guttorm
Joined on 04-04-2011
Posts 2
Javascript event when all files are uploaded?
Reply
Quote
Hello
Is there a way to get a javascript function to be called when all selected files are uploaded? I found CuteWebUI_AjaxUploader_OnQueueUI but it seems to be called for every file. Is there perhaps a way to figure out if it's the last one?
I need to update some things on the web page after all files have been uploaded.
04-04-2011, 9:06 PM
66986
in reply to
66978
Kenneth
Joined on 02-13-2008
Posts 3,886
Re: Javascript event when all files are uploaded?
Reply
Quote
Hi Guttorm,
Try
function CuteWebUI_AjaxUploader_OnPostback()
{
alert("finish");
}
Regards,
ken
04-05-2011, 2:46 AM
66995
in reply to
66986
Guttorm
Joined on 04-04-2011
Posts 2
Re: Javascript event when all files are uploaded?
Reply
Quote
Thank you! It worked fine.
I guess I should have read the docs a bit better.