CustomTool does not expose an Icon() API configuration in the Editor
Currently, defining a custom tool does not enable you to specify an icon which tends to be permitted in the Kendo UI for jQuery Editor incarnation. For example:
$("#editor").kendoEditor({
tools: [
{
name: "Toggle",
icon: "toggle-full-screen-mode"
}
]
});
The following dojo showcases this behavior.
It would be beneficial if there is a possibility to explicitly define an icon in the MVC and Core wrappers. For instance:
@(Html.Kendo().Editor()
.Name("editor")
.Tools(tools => tools
.Clear()
.CustomButton(button => button
.Name("ToggleFullScreen")
.Icon("toggle-full-screen-mode")
)
)
)