Re: Uploader shows the uploaded file in a table for a second then disappears

  •  04-09-2010, 6:17 PM

    Re: Uploader shows the uploaded file in a table for a second then disappears

    This is working great, but if I use the following two functions, it stops working, and will start seeing the table again
     
    function CuteWebUI_AjaxUploader_OnError(msg)
    {
         alert("global error:"+msg);
         return false;
    }
    function CuteWebUI_AjaxUploader_OnTaskError(obj,msg,reason)
    {
        alert("file error:"+obj.FileName+" , "+msg);
        return false;
    }

     
View Complete Thread