tools.name String
When specifying a tool as an object, a tool name is required. Please note that "undo" and "redo" are reserved tool names.
Example
<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
tools: [
{ name: "custom" }
]
});
</script>