<script type="text/javascript">
function ChangeText(editor, args)
{
var dropdown = editor.getToolByName("FormatBlock"); //put here the name of the dropdown which you want to customize
var headerText = dropdown.get_element();
headerText.firstChild.title = "test";
headerText.firstChild.innerHTML = "test";
}
</script>
And now I have problem with this one.
If it isn't make any difficulty for you can you tell me, how can I put any
custom controls on my EditorToolbar(for example checkbox),
as I understand it isn't possible to do it besides dropdown and button.
Thank you for help.
0
Tervel
Telerik team
answered on 27 May 2008, 12:56 PM
Hello Tik,
It is not possible to add arbitrary controls on the editor toolbar. What you should do is perhaps add those just on top of the editor, so they are near it, but not a part of it.