Re: Why does the editor remove Inline CSS

  •  11-11-2006, 10:22 AM

    Re: Why does the editor remove Inline CSS

    Hi,
     
    in this example ist works fine, so I started downloading the latest version and bind it to my app, but the same error occured.
     
    Here are my settings:

    <CE:Editor ID="Editor" runat="server" Width="100%" AutoConfigure="Full_noform" ThemeType="Office2003_BlueTheme"

    RemoveTBODYTag="True" ShowBottomBar="true" CustomCulture="de-DE"

    EnableContextMenu="false" BreakElement="Br" Height="100%" EditorOnPaste="Default">

    <FrameStyle BackColor="White" BorderColor="#DDDDDD" BorderStyle="Solid" BorderWidth="1px"

    CssClass="CuteEditorFrame" Height="500px" Width="100%" />

    </CE:Editor>
     
    In the Code behind I'm using this:
     
    Editor.SetSecurityAllowUpload(true);
    Editor.SetSecurityAllowDelete(
    true);

    Editor.RemoveServerNamesFromUrl = false;

    Editor.UseRelativeLinks = false;

    Editor.MaxHTMLLength = 65000;

    Editor.MaxTextLength = 65000;

    Editor.SetSecurityAllowCreateFolder(false);

    Editor.SetSecurityAllowDeleteFolder(false);

    Editor.SetSecurityGalleryPath(.......

    Editor.SetSecurityFilesGalleryPath(.....
    Editor.SetSecurityImageGalleryPath(......
     
    Editor.SetSecurityTemplateGalleryPath(......
     
    Are there any extentsions or settings that i have to setup for.
    Btw. I disabed the css class dropdownlist in the config file, may this be the problem?
View Complete Thread