Re: Recent issue in IE8 for uploader?

  •  09-12-2013, 12:54 PM

    Re: Recent issue in IE8 for uploader?

    Hi Besoup,

     

    This is the IE browser limitation, if the client has not the Silverlight or flash plug in installed, then can not get the size on IE.
    You can add the code below to the bottom of your page, it will pop up the alert message to let the user know must has the flash or Silverlight installed if he using IE.


    1. <script>  
    2. function CuteWebUI_AjaxUploader_OnBrowse()  
    3. {  
    4.     uploader=this;  
    5.     var scope=uploader.internalobject;  
    6.     if(!scope.addontype)  
    7.     {  
    8.         alert('you must installed Flash/Silverlight or use Chrome etc..');  
    9.         return false;  
    10.     }  
    11. }  
    12. </script>  

    Regards,

     

    Ken 

View Complete Thread