Objects doesn't support this property or method - window.CuteEditorInitialize function

Last post 01-19-2011, 8:43 AM by Eric. 7 replies.
Sort Posts: Previous Next
  •  11-11-2009, 11:43 PM 57072

    Objects doesn't support this property or method - window.CuteEditorInitialize function

    I have upgraded my cute editor version from 5.3 to 6.5(.NET 2.0)
    I have done the following 
    1. Deleted and re-refered the new dlls and lic file
    2. replaced the CuteEditor_Client folder with the new ones.
     
    Now i am not able to see anything in the editor part.Just a white box
    I can see one javasript error "Objects doesn't support this property or method"
    i debugged the script and found that the error is in  "window.CuteEditorInitialize" function.Please help me to resolve this.
     
  •  11-12-2009, 1:11 AM 57075 in reply to 57072

    Re: Objects doesn't support this property or method - window.CuteEditorInitialize function

    Hi janeshh,
     
    Please create a page like below and test on your site
     
    1. <%@ Page Language="C#" AutoEventWireup="True" %>   
    2.   
    3. <%@ Register Namespace="CuteEditor" Assembly="CuteEditor" TagPrefix="CE" %>   
    4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"  
    5.     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
    6. <html xmlns="http://www.w3.org/1999/xhtml">   
    7. <head id="Head1" runat="server">   
    8. </head>   
    9. <body>   
    10.     <form id="Form1" runat="server">   
    11.         <CE:Editor ID="editor1" runat="server" >   
    12.         </CE:Editor>   
    13.     </form>   
    14. </body>   
    15. </html>  
    Keep me posted.
     
    Regards,
     
    Ken
  •  11-12-2009, 1:47 AM 57077 in reply to 57075

    Re: Objects doesn't support this property or method - window.CuteEditorInitialize function

    yes i have tested and the error i am getting is the same
     
     
    This error i am getting. Please help
  •  11-12-2009, 3:28 AM 57082 in reply to 57077

    Re: Objects doesn't support this property or method - window.CuteEditorInitialize function

    Hi janeshh,
     
    Can you send the test URL to me?
     
     
    Regards,
     
    ken
  •  11-12-2009, 4:29 AM 57083 in reply to 57082

    Re: Objects doesn't support this property or method - window.CuteEditorInitialize function

    Public url is not available for this project.Can u suggest some other solution??..
    i am dying to find the solution. what could be the problem?
    i have created a new project and used the same dll and client files and its working perfectly fine.
    But for my work project its not. Is it because my work project had version 5.3 before?. 
    In that case also i have removed all the dlls and lic file of 5.3 from my bin folder.
    Please help me.
  •  11-12-2009, 8:53 AM 57090 in reply to 57083

    Re: Objects doesn't support this property or method - window.CuteEditorInitialize function

    janeshh:
    Public url is not available for this project.Can u suggest some other solution??..
    i am dying to find the solution. what could be the problem?
    i have created a new project and used the same dll and client files and its working perfectly fine.
    But for my work project its not. Is it because my work project had version 5.3 before?. 
    In that case also i have removed all the dlls and lic file of 5.3 from my bin folder.
    Please help me.
     
    Have you deleted the old client files when upgrading?

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  01-19-2011, 8:06 AM 65791 in reply to 57090

    Re: Objects doesn't support this property or method - window.CuteEditorInitialize function

    Hi,
     
    I have the same problem and i can not find the solution. I use CuteEditor for .Net6. When i run my app from VS2010 an from my localhost (IIS7) it works ok. When i access the app in the couds (Windows 2008, IIS7) it doesn't run ok (not loading the page, buttons, etc) and i get
    window.CuteEditorInitialize is not a function error in javascript.
     
    How can i solve this problem, please?
     
    Thank you.
  •  01-19-2011, 8:43 AM 65792 in reply to 65791

    Re: Objects doesn't support this property or method - window.CuteEditorInitialize function

    Dear abularca,
     
    Please save the following code to test.aspx, does it work fine?  
    <%@ Page Language="C#"%>
    <%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html>
        <head>
      <title>ASP and ASP.NET WYSIWYG Editor - Edit Static Html Example </title> 
     </head>
     <body>
            <form id="Form1" runat="server">   
            <CE:Editor id="Editor1" runat="server" ></CE:Editor><BR>
            <asp:Button id="btnUpdate" onclick="Submit" Runat="server" Text="Submit"></asp:Button><br />   
         <asp:textbox id="textbox1" runat="server" TextMode="MultiLine" Height="250px" Width="750px" Font-Name="Arial"></asp:TextBox> 
      </form>
     </body>
    </html>
    <script runat="server">
     void Page_Load(object sender, System.EventArgs e)
      {      
       }
     public void Submit(object sender, System.EventArgs e)
     {   
       textbox1.Text = Editor1.PlainText; 
     }
    </script> 
    Thank you for asking
View as RSS news feed in XML