Re: CuteWebUI_AjaxUploader_Initialize is not defined

  •  09-14-2010, 3:16 AM

    Re: CuteWebUI_AjaxUploader_Initialize is not defined

    Hi pandurang,
     
    Please post your page code here.
     
    Also, you can try the example below
     
    1. <%@ Page Language="C#" %>   
    2.   
    3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
    4.   
    5.   
    6. <html xmlns="http://www.w3.org/1999/xhtml">   
    7. <head runat="server">   
    8.     <title>Untitled Page</title>   
    9. </head>   
    10. <body>   
    11.     <form id="form1" runat="server">   
    12.         <div>   
    13.             <CuteWebUI:UploadAttachments ID="attachment1" runat="server">   
    14.             </CuteWebUI:UploadAttachments>   
    15.         </div>   
    16.     </form>   
    17. </body>   
    18. </html>   
    19.   
    20. <script>   
    21.   
    22. function CuteWebUI_AjaxUploader_OnInitialize()   
    23. {   
    24.  var hidden=this;   
    25.   
    26.     //warning , using the internalobject is not recommend .   
    27.   
    28.     //if you use it, you need test the uploader again for each new version.   
    29.     var arr=[];   
    30.     for(var p in hidden.internalobject)   
    31.     {   
    32.        arr.push(p);   
    33.   
    34.     }   
    35.     alert("internal object member list : "+arr);   
    36.   
    37. }   
    38. </script>  
    Regards,
     
    Ken
View Complete Thread