Re: Launching editor in preview mode allows editing in Firefox

  •  10-10-2011, 9:21 AM

    Re: Launching editor in preview mode allows editing in Firefox

    Hi erslht,
     
    Can you try the example below? it works fine for me. Is your site online? If so, can you send me the test page url? So I can check it too.
     
    <?php include_once("cuteeditor_files/include_CuteEditor.php") ; ?>
    <html>    
        <head>
        </head>
        <body>
            
            <form ID="Form1">
            <?php
                $editor=new CuteEditor();
                $editor->ID="Editor1";
                $editor->ActiveTab="View";
                $editor->Text="this is a test!";
                $editor->Draw();
                $editor=null;
            ?>
            </form>
        </body>
    </html>
     
    Regards,
     
    Ken
View Complete Thread