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