Re: CuteEditor doesn't load in Firefox 5.0

  •  11-08-2011, 8:07 AM

    Re: CuteEditor doesn't load in Firefox 5.0

    Hi ChristopherHoven,
     
    We are investigating this issue. Once issue is resolved, I will keep you posted. Sorry for your inconvenience.
     
    For now, please try style visibility, like below.
     
    <!-- #include file = "cuteeditor_files/include_CuteEditor.asp" -->
    <html>
    <head>
        <title>ASP Editor Demo</title>
    </head>
    <body>
        <form name="theForm" method="post">
          <input type="button" value="Show Editor" onclick="showEditor()" />
            <div style=" visibility:hidden; width:1px; height:1px" id="div1">
                <%   
           Dim editor   
           Set editor = New CuteEditor   
           editor.ID = "Editor1"  
           editor.Text = "Hello World"  
           editor.EditCompleteDocument=true
           editor.Draw()   
                %>
            </div>
        </form>
    </body>
    </html>

    <script>
    function showEditor()
    {
        var div1=document.getElementById("div1");
        div1.style.visibility="visible";
        div1.style.height="";
        div1.style.width="";
    }
    </script>
     
     
    Regards,
     
    Ken
View Complete Thread