Re: Handle FileTooLarge, MaxFilesLimit and FileTypeNotSupport Message Client-Side

  •  09-10-2012, 8:11 AM

    Re: Handle FileTooLarge, MaxFilesLimit and FileTypeNotSupport Message Client-Side

    Hi anloboz,

     

    For now can not catch the  "MaxFilesLimit" error at client side. Sorry for your inconvenience.

     

    maybe you try try another way to limit the max files, like below. Then you can handle it at client side. 

     

    <script type="text/javascript">
    function CuteWebUI_AjaxUploader_OnSelect(files)
    {
       if(files.length>4)
       {
            alert("Attenzione! Sono consentiti 4 file alla volta!");
            return false;
       }
    }
    </script>

     

     

    Regards,

     

    Ken 

View Complete Thread