HI rajbhagat,
Please try the example page below, it wil use ... to replace the long file name when uploading.
- <%@ 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>
- .AjaxUploaderProgressInfoText
- {
-
- display: block;width: 300px;overflow: hidden;white-space: nowrap;-o-text-overflow: ellipsis;text-overflow: ellipsis;
- }
-
- </style>
- </head>
- <body>
- <form id="Form1" runat="server">
- <div>
- <CuteWebUI:Uploader ID="UploadAttachments1" runat="server">
- </CuteWebUI:Uploader>
- </div>
- </form>
- </body>
-
- <script>
- var uploader=document.getElementById("<%=UploadAttachments1.ClientID %>");
- uploader.handlequeueui=myqueueuihandler;
- function myqueueuihandler(list)
- {
- return false;
- }
- </script>
-
- </html>
Regards,
Ken