Re: During upload is in progress i need to change text of InserButton to "Uploading...."

  •  03-12-2013, 12:15 PM

    Re: During upload is in progress i need to change text of InserButton to "Uploading...."

    Hi,

     

    You can check the uploader control id first, so you will know to change which button text.

     

    1. <script type="text/javascript">  
    2. function CuteWebUI_AjaxUploader_OnStart()  
    3. {  
    4.     var hidden=this;  
    5.     if(hidden.id=="uploader1")  
    6.     {  
    7.         //change the Related button text 
    8.     }  
    9. }  
    10. </script>  
     

    Regards,

     

    Ken 

View Complete Thread