Hi there,
I am trying to add a new group of commands to the default RadEditor via the following code (taken from demos):
By doing this, I lose ALL other commands / buttons from the RadEditor, which is not desirable - am I misinterpreting the method .Add() ? I would have thought it would have appended...
If I have to alter the XML to add my commands to, where can I get an up-to-date version of the XML that forms the default RadEditor? Are the files at http://www.telerik.com/support/kb/aspnet-ajax/editor/default-toolsfile-xml-file.aspx still valid?
Update: the files at the link above are not valid, as they are missing some commands (Format code block, etc.)
Thank you,
Mike Kingscott
I am trying to add a new group of commands to the default RadEditor via the following code (taken from demos):
EditorToolGroup etg = new EditorToolGroup();
rdHTMLEditor.Tools.Add(etg);
EditorTool addLoginLink = new EditorTool();
addLoginLink.Name = "AddLoginLink";
addLoginLink.Text = "Add Login Link";
etg.Tools.Add(addLoginLink);
If I have to alter the XML to add my commands to, where can I get an up-to-date version of the XML that forms the default RadEditor? Are the files at http://www.telerik.com/support/kb/aspnet-ajax/editor/default-toolsfile-xml-file.aspx still valid?
Update: the files at the link above are not valid, as they are missing some commands (Format code block, etc.)
Thank you,
Mike Kingscott