Re: Multiple editors not working properly

  •  08-01-2012, 2:25 PM

    Re: Multiple editors not working properly

    Hi GalaGalaxia,
     
    I can reproduce it on the demo too. Please try the example page below, does it work on your end?
     
    1. <?php include_once("cuteeditor_files/include_CuteEditor.php") ; ?>  
    2. <html>  
    3.   <head>  
    4.       <title>example</title>  
    5.   </head>  
    6.   <body>  
    7.     <form name="theForm">  
    8.       
    9.       <?php  
    10.               $editor=new CuteEditor();  
    11.               $editor->ID="Editor1";  
    12.               $editor->ThemeType="Office2003";  
    13.               $editor->Draw();  
    14.               $editor=null;  
    15.                 
    16.               echo "<br /><br />";                  
    17.                 
    18.               $editor=new CuteEditor();  
    19.               $editor->ID="Editor2";  
    20.               $editor->AutoConfigure="Simple";  
    21.               $editor->Draw();  
    22.               $editor=null;  
    23.           ?>  
    24.           </form>  
    25.   </body>  
    26. </html>  
    Regards,
     
    Ken 
View Complete Thread