Re: IE9 Issues with CUTEEDITOR_ONINITIALIZED

  •  05-16-2012, 7:44 AM

    Re: IE9 Issues with CUTEEDITOR_ONINITIALIZED

    Hi BigDave,
     
    Please try the example page below, does it work for your?
     
    If yes, it should be some different on your page, please create an example page which can reproduce this issue and send it to Kenneth@CuteSoft.net. I will check it and get back to you as soon as possible.
     
    If it does not work on your end, please download the latest version and try again.
     
    latest version download url: http://www.cutesoft.net/downloads/folders/21904/download.aspx
     
    If you want to keep your old configurations, please deploy the new version, then put this folder "\CuteSoft_Client\CuteEditor\Configuration" back.
    1. <%@ Page Language="C#" %>  
    2.   
    3. <%@ Register Namespace="CuteEditor" Assembly="CuteEditor" TagPrefix="CE" %>  
    4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
    5. <html xmlns="http://www.w3.org/1999/xhtml">  
    6. <head id="Head1" runat="server">  
    7.     <title>example</title>  
    8. </head>  
    9. <body>  
    10.     <form id="form1" runat="server">  
    11.         <div>  
    12.             <CE:Editor ID="editor1" runat="server" >  
    13.             </CE:Editor>  
    14.         </div>  
    15.     </form>  
    16. </body>  
    17. </html>  
    18. <script>  
    19. function CuteEditor_OnInitialized(editor)  
    20. {  
    21.     alert("fire");  
    22. }  
    23. </script>  
    Regards,
     
    Ken 
View Complete Thread