RadControls for ASP.NET AJAX The RadEditor Custom Links dropdown is a convenient tool for inserting pre-defined hyperlinks. These usually be one of two link types:
Internal site links (i.e. links to other pages of the web-site). You can preload the Custom Links treeview with the complete structure of your site so that the end-users would just need to select a page from the dropdown (e.g."About-us -> History").
Frequently used external links (e.g. Google).
Custom links are kept in the Links collection. You easily predefine the Links Collection, using the respective ToolsFile e.g.
CopyXML
<root>
<tools name="MainToolbar" enabled="true">
<tool name="InsertCustomLink" />
</tools>
<links>
<link name="Telerik" href="http://www.telerik.com">
<link name="Products" href="http://www.telerik.com/products">
<link name="Telerik RadControls for ASP.NET suite" href="http://www.telerik.com/radcontrols" />
<link name="Telerik RadNavigation suite" href="http://www.telerik.com/radnavigation" />
<link name="Telerik RadEditor" href="http://www.telerik.com/radeditor">
<link name="QSF" href="http://www.telerik.com/Telerik RadEditor"/>
</link>
</link>
<link name="Purchase" href="http://www.telerik.com/purchase" />
<link name="Support" href="http://www.telerik.com/support" />
<link name="Client.Net" href="http://www.telerik.com/clientnet" />
</link>
</links>
</root>