Re: CuteEditor_OnInitialized does not get fired in Safari and Chrome Browsers

  •  12-17-2010, 12:57 AM

    Re: CuteEditor_OnInitialized does not get fired in Safari and Chrome Browsers

    Hi sanjay.joshi,
     
    It works fine for me. Can you try the example below? Does it works on your safari and chrome?
     
    What version of safari and google chrome you are testing?
     
    If it only happen on special case, please show me the code. I will check it and get back to you as soon as possible.
     
    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>Untitled Page</title>  
    8. </head>  
    9. <body>  
    10.     <form id="form1" runat="server">  
    11.         <CE:editor id="editor1" runat="server" />  
    12.     </form>  
    13. </body>  
    14. </html>  
    15.   
    16. <script type="text/javascript">  
    17. function CuteEditor_OnInitialized(editor)  
    18. {  
    19.     alert("this is a test");  
    20. }  
    21. </script> 
     Regards,
     
    ken
View Complete Thread