| CuteEditor for PHP 6.1 Class Library |
|
Editor.EnableClientScript Property
Whether to enable the client script based HTML editor. If false, the Cute Editor will render as a regular textarea field instead of a WYSIWYG editor.
Example Code
<?php
$editor=new CuteEditor();
$editor->ID="Editor1";
$editor->Text="Type here";
$editor->FilesPath="CuteEditor_Files";
$editor->EnableClientScript=false;
$editor->Draw();
$editor=null;
//use $_POST["Editor1"]to catch the data
?>
See Also
Editor Class | CuteEditor Namespace