Re: Launching editor in preview mode allows editing in Firefox

  •  10-17-2011, 7:45 AM

    Re: Launching editor in preview mode allows editing in Firefox

    Hi erslht,
     
    Yes, I can reproduce this issue on firefox 7.1.
     
    For now please use the code below to achieve the view tab when editor load.
     
    I have reported this issue to the development team, once issue is resloved, I will keep your posted.
     
    <?php require_once "cuteeditor_files/include_CuteEditor.php" ?>  

    <html>    
    <body>    
            <form id="form1" method="POST">    
                <?php    
                    $editor=new CuteEditor();    
                    $editor->Text="Type here";    
                    $editor->ID="Editor1";
                    $editor->Draw();    
                ?>    
           </form>    
    </body>    
    </html>
    <script>

    function CuteEditor_OnInitialized(editor)
    {
       editor.ExecCommand("TabView");
    }
    </script>
     
    Regards,
     
    Ken
View Complete Thread