Re: if I select multiple files, can I know how many files I have selected?

  •  02-15-2012, 6:17 AM

    Re: if I select multiple files, can I know how many files I have selected?

    Hi manpakhong,
     
    You can get the select files count by API CuteWebUI_AjaxUploader_OnSelect, it is the javascript function.
     

    function CuteWebUI_AjaxUploader_OnSelect(files)

    {

        alert(files.length);

    }

     
    Regards,
     
    Ken 
View Complete Thread