Hi,
There are some properties on the control that can help you customize the buildin progress bar.
If you want to customize it completely , you need use script to write your own progress bar.
For example
<script>
function CuteWebUI_AjaxUploader_OnProgress(enable,filename,begintime,uploadedsize,totalsize)
{
var hidden=this;
if(enable)
{
if(totalsize)
{
document.title=filename+" - "+Math.floor(100*uploadedsize/totalsize)+'%'
}
else
{
}
}
else
{
}
return false; //hide the default ui.
}
</script>
For more script API information , please check the
Regards,
Terry