toolbar.items.showIconString
(default: "both")
Specifies where the button icon will be displayed. Possible values are: "toolbar", "overflow" or "both" (default).
Example
<div id="imageEditor"></div>
<script>
$("#imageEditor").kendoImageEditor({
toolbar: {
items: [
{ text: "Toolbar Icon", icon: "crop", showIcon: "toolbar" },
{ text: "Overflow Icon", icon: "resize", showIcon: "overflow" },
{ text: "Both", icon: "save", showIcon: "both" }
]
}
});
</script>
In this article