Re: how to create a Manual upload without a list of recently uploaded files showing up afterwards

  •  09-24-2009, 11:19 AM

    Re: how to create a Manual upload without a list of recently uploaded files showing up afterwards

    Hi,
     
    You can use this way to hide the table :
     
    <script type="text/javascript">
     function CuteWebUI_AjaxUploader_OnQueueUI(list)
     {
      var hasqueueoruploading=null;
      for(var i=0;i<list.length;i++)
      {
       var st=list[i].Status;
       if(st=="Queue"||st=="Upload")
        hasqueueoruploading=list[i].FileName;
      }
      if(hasqueueoruploading)
      {
       //show a panel that you have selected a file .
      }
     
    //return false can hide the queue table.
      return false;
     }
     </script>
View Complete Thread