Hi MayurNarsale,
To achieve these requirements, you need to wirte your own queue table. The example below shows you how to achieve it.
For requirement 1, I used property "CancelButtonID" to define my own cancel button, so I can hide/show it in "CuteWebUI_AjaxUploader_OnSelect(files) " depends on the files number.
For requirement 2, I write my own queue table. And hide the error/canceld record by
else if(stat=="Error")
{
last.appendChild(imgError);
//hide the canceld record
row.style.visibility="hidden";
}
Regards,
Ken