Re: How to disable the creation of queue table and the default progress bar?

  •  10-21-2010, 9:44 PM

    Re: How to disable the creation of queue table and the default progress bar?

    Hi deepakkumarjoshi,
     
    Try this way
     
        protected override void OnLoad(EventArgs e)
        {
            //UploadAttachments1 is the id of uploader
            UploadAttachments1.GetItemsTable().Visible = false;
            base.OnLoad(e);
        } 
     
    Regards,
     
    ken 
View Complete Thread