I am trying to determine how to embed my contextMenus inside my tools file.
I have looked at http://www.telerik.com/help/aspnet-ajax/usintthetoolsfile.html and http://www.telerik.com/support/kb/aspnet-ajax/editor/default-toolsfile-xml-file.aspx. Using the tools files seems to allude that you can embed the contextMenus into the tools menu... except it doesn't seem to work.
I have like this
<?
xml version="1.0" encoding="utf-8" ?>
<
root>
-
<modules>
<
module name="RadEditorStatistics" dockingZone="Bottom" enabled="true" visible="true" />
<
module name="RadEditorDomInspector" dockingZone="Module" enabled="false" visible="false" />
<
module name="RadEditorNodeInspector" dockingZone="Module" enabled="false" visible="false" />
<
module name="RadEditorHtmlInspector" dockingZone="Module" enabled="false" visible="false" />
</
modules>
<
tools>
<
tool name="FindAndReplace" />
<
tool name="Undo" />
<
tool name="Redo" />
<
tool name="Cut" />
<
tool name="Copy" />
<
tool name="Paste" shortcut="CTRL+!"/>
<
tool name="InsertOrderedList" />
<
tool name="InsertUnorderedList" />
<
tool name="FormatStripper" />
<
tool name="PasteFromWordNoFontsNoSizes" />
< tool separator="true"/>
<
tool separator="true"/>
<
tool name="FormatBlock" />
<
tool name="Bold" />
</
tools>
<
paragraphs>
<
paragraph name="Clear formatting" value="<body>" />
<
paragraph name="<H3>Heading 3</H3>" value="<H3>" />
</
paragraphs>
<
contextMenus>
<
contextMenu forElement="IMG" enabled="true">
<
tool name="Paste" />
<
tool name="pastePlainText" />
</
contextMenu>
</
contextMenus>
</
root>
All I want if for my users to past plain text or paste only. Any thoughts would be appreciated.
mac