toolbar.items.overflowString
Specifies the overflow of the button.
Example
<div id="imageEditor"></div>
<script>
$("#imageEditor").kendoImageEditor({
toolbar: {
items: [
{ text: "Always", overflow: "always" },
{ text: "Never", overflow: "never" },
{ text: "Auto", overflow: "auto" }
]
}
});
</script>
In this article