Re: Auto adjusting height in Chrome

  •  11-22-2010, 12:59 PM

    Re: Auto adjusting height in Chrome

    Dear mmargeta,
     
    Please try the following code:
     
    <?php include_once("cuteeditor_files/include_CuteEditor.php") ; ?>
    <html> 
        <head>  
        </head>
      <body>
     <form name="theForm" action="Get_HtmlContent.php" method="post">    
          <br />
          <?php
                $editor=new CuteEditor();
                $editor->ID="Editor1";
                $editor->Text="This is some more test text.<br>This is some more test text.<br>This is some more test text.<br>This is some more test text.<br>This is some more test text.<br>This is some more test text.<br>This is some more test text.<br>";
                $editor->ResizeMode = "PlusMinus";
                $editor->Height=355;
       $editor->AutoConfigure = "Simple";
                $editor->Draw();
                $editor=null;           
                //use $_POST["Editor1"]to retrieve the data
            ?>
      </form>
     </body>
    </html>
     
    Thank you for asking
View Complete Thread