RE: cffileupload onUploadComplete not working

2009-12-23 Thread Tim Do
Thanks Ray! -Original Message- From: Raymond Camden [mailto:rcam...@gmail.com] Sent: Tuesday, December 22, 2009 11:48 AM To: cf-talk Subject: Re: cffileupload onUploadComplete not working You don't pass functionname(), but just the name. Change your oncomplete to oncomplete

cffileupload onUploadComplete not working

2009-12-22 Thread Tim Do
I'm trying to do a multiple file upload using cffileupload. The upload is working fine but I'd like to relocate the user after all files have been uploaded. I added: onComplete=uploadCompleteHandler('#batchUploadName#') But the user is being redirected on the page load and not after the user

Re: cffileupload onUploadComplete not working

2009-12-22 Thread Raymond Camden
You don't pass functionname(), but just the name. Change your oncomplete to oncomplete=uploadCompleteHandler Now this means you can't pass in the CF variable. Just use within your js. It will be static on the client side though. On Tue, Dec 22, 2009 at 12:52 PM, Tim Do t...@wng.com wrote: