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