is there any function in Uploadify which is called after all the currently uploaded files are deleted?
Regards,
Balan
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The closest pre built thing is
onAllComplete, but it sounds like you want something different. What I would do is:Define
var count = 0;outside of any funciton / methodIn your
onSelecthandler function (which is called for each file that gets selected):count++;In your
onCancelhandler (called for each file removed):count–;
(sorry formatting this post had some issues for some reason)