Hi,
The example below shows you how to hide the "cancel" and "cancel all" button.
- <%@ Page Language="C#" Title="Customize the queue UI" %>
-
- <%@ Register TagPrefix="CuteWebUI" Namespace="CuteWebUI" Assembly="CuteWebUI.AjaxUploader" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head id="Head1" runat="server">
- <style>
- .AjaxUploaderCancelAllButton {
- display: none !important;
- }
- </style>
- </head>
- <body>
- <form id="Form1" runat="server">
- <CuteWebUI:UploadAttachments ID="uploader1" runat="server" CancelButtonID="myCancel">
- </CuteWebUI:UploadAttachments>
- <input type="button" id="myCancel" style="visibility: hidden" />
- </form>
- </body>
- </html>
1. Set property "CancelButtonID" and hide the control what you set for will hide the "cancel" button.
2. The style setting below use to hide the "cancel all" button.
<style>
.AjaxUploaderCancelAllButton {
display: none !important;
}
</style>
Regards,
Ken