Examples
NonEditable contents
This example displays how areas within an editor instance can be disabled from editing by specifying the standard-compliant contenteditable attribute on the element.
Demo Code:
<?php
$rte=new RichTextEditor();
$rte->Name="Editor1";
$rte->Text="<p contenteditable="false">Second paragraph is read-only.</p>"
$rte->MvcInit();
?>
<?php echo $rte->GetString() ?>