Examples
Context menu customization
RichTextEditor is a context sensitive application, it is aware of it's context and acts accordingly. There are many ways to control the context menu behaviors within RichTextEditor:
Demo Code:
<?php
$rte=new RichTextEditor();
$rte->Name="Editor1";
//$rte->ContextMenuMode="simple";
//$rte->ContextMenuMode="minimal";
$rte->MvcInit();
?>
<?php echo $rte->GetString() ?>