Hi vickMercury,
the link I sent is the only js api document. If you want to find all properties/methods of the uploader object, please try the example below. it will list all.
- <%@ 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">
- </head>
- <body>
- <form id="Form1" runat="server">
- <CuteWebUI:UploadAttachments ID="Uploader1" runat="server"></CuteWebUI:UploadAttachments><br />
- <input type="button" value="get uploader object properties/methods" onclick="getProperties()" />
- <div id="div1"></div>
- </form>
- </body>
-
-
- <script type="text/javascript">
- function getProperties() {
- var uploadobj = document.getElementById('<%=Uploader1.ClientID %>');
- var div1 = document.getElementById('div1');
- for (var i in uploadobj) {
- div1.innerHTML += i;
- div1.innerHTML += "<br/>";
- }
-
- }
- </script>
-
-
- </html>
Regards,
Ken