Re: Word wrap problem with Firefox

  •  10-17-2009, 11:01 PM

    Re: Word wrap problem with Firefox

    Hi,
     
    You can use this javascript event to return the progress text :
     
    function CuteWebUI_AjaxUploader_OnProgress(reversed, filename, timestart, uploadedsize, contentlength)
    {
     return "myinfo - "+filename;
    }
    in this function , you can check the timestart (from new Date().getTime) , uploadedsize, contentlength to calculate the progress .
     
    (Note : the uploadedsize,contentlength maybe null)
     
    Regards,
    Terry
View Complete Thread