Hi,
You can use this way to hide the table :
<script type="text/javascript">
function CuteWebUI_AjaxUploader_OnQueueUI(list)
{
var hasqueueoruploading=null;
for(var i=0;i<list.length;i++)
{
var st=list[i].Status;
if(st=="Queue"||st=="Upload")
hasqueueoruploading=list[i].FileName;
}
if(hasqueueoruploading)
{
//show a panel that you have selected a file .
}
//return false can hide the queue table.
return false;
}
</script>