Re: CuteWebUI_AjaxUploader_OnStart() Not being called!

  •  08-20-2009, 8:43 AM

    Re: CuteWebUI_AjaxUploader_OnStart() Not being called!

    Hi Terry,
     
    Yes, that seems to be what is happening. 
    When I add these functions they don't get called either:
    1.  function CuteWebUI_AjaxUploader_OnStart() {  
    2.             //this function would be called on each file start upload  
    3.             //maybe be called many times when upload multiple files.  
    4.             alert("hello");  
    5.             $('#SendMail').attr("disabled""disabled");  
    6.         }  
    7.         function CuteWebUI_AjaxUploader_OnStop() {  
    8.             //this function would be called if get error or user cancel it.  
    9.             alert("hello");             
    10.             $('#SendMail').removeAttr("disabled");          
    11.         } 
View Complete Thread