[CLOSED] Html editor display

  1. #1

    [CLOSED] Html editor display



    Hi,

    In htmleditor, when first time page is loading i get false in html editor for fraction of seconds and it disappers.

    how to avoid this?

    
    <ext:Tab ID="Tab2" runat="server" Title="History" Border="false">
    <Body>
    <ext:AnchorLayout ID="AnchorLayout2" runat="server">
    <ext:Anchor Horizontal="100%" Vertical="100%">
    <ext:HtmlEditor ID="HtmlEdr2" runat="server" ReadOnly="true" CtCls="hide-toolbar"
    Height="70">
    <CustomConfig>
    <ext:ConfigItem Name="width" Value="100%" Mode="Value" />
    </CustomConfig>
    </ext:HtmlEditor>
    </ext:Anchor>
    </ext:AnchorLayout>
    </Body>
    </ext:Tab>
    I am using coolite version 0.8.2
    before the coolite version 0.8.1 i didnt get like this.

    How to avoid this?
  2. #2

    RE: [CLOSED] Html editor display

    Hi,

    Try the following

    1. Add the following listener to the HtmlEditor
    <BeforeRender Fn="initEditor" />
    2. Add the following js code
    var initEditor = function(){
                this.onRender = this.onRender.createInterceptor(function(){
                    this.oldUrl = Ext.SSL_SECURE_URL;
                    Ext.SSL_SECURE_URL = ";";
                }, this);
                
                this.onRender = this.onRender.createSequence(function(){
                    Ext.SSL_SECURE_URL = this.oldUrl;
                    delete this.oldUrl;
                }, this);
            }

Similar Threads

  1. [CLOSED] HTML Editor
    By ppettigrew in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Oct 08, 2010, 4:36 PM
  2. [CLOSED] HTML editor with IE 8
    By speedstepmem3 in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: May 17, 2010, 7:59 AM
  3. [CLOSED] html editor
    By speedstepmem3 in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Mar 24, 2009, 11:06 AM
  4. [CLOSED] html editor
    By speedstepmem3 in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Mar 20, 2009, 7:42 AM
  5. [CLOSED] html editor
    By speedstepmem3 in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Feb 19, 2009, 10:08 AM

Posting Permissions