Hello all,
I'm trying to add a custom button to my MOSSRadEditor, but it doesn't show when rendering my Control.
This is my Code:
MOSSRadEditor re_editor = new MOSSRadEditor();
EditorToolGroup main = new EditorToolGroup();
re_editor.Tools.Add(main);
EditorTool CustomTool = new EditorTool();
CustomTool.Name = "TestButton";
CustomTool.Enabled = true;
CustomTool.ShowText = true;
main.Tools.Add(CustomTool);
Are there extra properties to configure? And where do I handle the event for that button, can i add the javascript for that button programmatically in the control.
Or something like this.page.ClientScript. ...
Thx!
I'm trying to add a custom button to my MOSSRadEditor, but it doesn't show when rendering my Control.
This is my Code:
MOSSRadEditor re_editor = new MOSSRadEditor();
EditorToolGroup main = new EditorToolGroup();
re_editor.Tools.Add(main);
EditorTool CustomTool = new EditorTool();
CustomTool.Name = "TestButton";
CustomTool.Enabled = true;
CustomTool.ShowText = true;
main.Tools.Add(CustomTool);
Are there extra properties to configure? And where do I handle the event for that button, can i add the javascript for that button programmatically in the control.
Or something like this.page.ClientScript. ...
Thx!