EditorWysiwygModeCss + Doctype +IE9 = broken editor when saving

  •  08-18-2011, 6:21 AM

    EditorWysiwygModeCss + Doctype +IE9 = broken editor when saving

    Iam using the CuteEditor with EditorWysiwygModeCss  and i declared a doctype in my page 
    unfortunately the editor wont save the data i typed in the editor while 
    using IE9
    When i delete EditorWysiwygModeCss the editor is saving , Also when removing the doctype the editor starts to work.
     
    Does anyone have the same problem and is there a way to fix this?
     
    Working snippits:
    Deleted: EditorWysiwygModeCss
    1. <%@ Page Language="VB" AutoEventWireup="false" CodeFile="CuteEditorTest.aspx.vb" Inherits="CM_CuteEditorTest" %>  
    2. <%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %>     
    3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
    4.   
    5. <html xmlns="http://www.w3.org/1999/xhtml">  
    6. <head runat="server">  
    7.     <title>Untitled Page</title>  
    8. </head>  
    9. <body>  
    10.     <form id="form1" runat="server">  
    11.     <div>  
    12.     <CE:Editor id="txtEditor" runat="server" Width="98%" Height="350"/>  
    13.     </div>  
    14.       
    15.     <asp:Button runat="server" Text="Button" />  
    16.     </form>  
    17. </body>  
    18. </html> 
    Deleted doctype
    1. <%@ Page Language="VB" AutoEventWireup="false" CodeFile="CuteEditorTest.aspx.vb" Inherits="CM_CuteEditorTest" %>  
    2. <%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %>     
    3.   
    4. <html xmlns="http://www.w3.org/1999/xhtml">  
    5. <head runat="server">  
    6.     <title>Untitled Page</title>  
    7. </head>  
    8. <body>  
    9.     <form id="form1" runat="server">  
    10.     <div>  
    11.     <CE:Editor id="txtEditor" runat="server" Width="98%" Height="350" EditorWysiwygModeCss="~/CeCSS.css" />  
    12.     </div>  
    13.       
    14.     <asp:Button runat="server" Text="Button" />  
    15.     </form>  
    16. </body>  
    17. </html> 
    Combo not working
    1. <%@ Page Language="VB" AutoEventWireup="false" CodeFile="CuteEditorTest.aspx.vb" Inherits="CM_CuteEditorTest" %>  
    2. <%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %>     
    3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
    4.   
    5. <html xmlns="http://www.w3.org/1999/xhtml">  
    6. <head runat="server">  
    7.     <title>Untitled Page</title>  
    8. </head>  
    9. <body>  
    10.     <form id="form1" runat="server">  
    11.     <div>  
    12.     <CE:Editor id="txtEditor" runat="server" Width="98%" Height="350" EditorWysiwygModeCss="~/CeCSS.css" />  
    13.     </div>  
    14.       
    15.     <asp:Button runat="server" Text="Button" />  
    16.     </form>  
    17. </body>  
    18. </html> 
     
    Its not an option to delete one of those.
     
    It does save when u switch to another mode eg. Normal, HTML, Preview depending on the loadstate of the editor.
    when the editor is not working the amount of words and characters are also not shown
View Complete Thread