Re: Control customization

  •  02-10-2010, 11:48 PM

    Re: Control customization

    Hi,
     
    Uploader provide client side event to let developers replace the queue table.
     
    So you need not modify the uploader.js
     
    Here is the document for ASP.NET version.
     
     
    The client API is same for PHP,
     
    so you can do this way :
     
    <script>
    function CuteWebUI_AjaxUploader_OnQueueUI(list)
    {
        var uploader=this;
        //draw your own table using the list data.
        return false;
    }
    </script>
     
    Regards,
    Terry
View Complete Thread