toolbar.items.imageUrlString
If set, the ToolBar will render an image with the specified URL in the button.
Example
<div id="imageEditor"></div>
<script>
$("#imageEditor").kendoImageEditor({
toolbar: {
items: [
{
text: "Custom Image",
imageUrl: "/images/custom-icon.png",
click: function() { console.log("Custom image button clicked"); }
}
]
}
});
</script>
In this article