resizable.toolbar.scrollButtonsString(default: "auto")
Defines the visibility of scroll buttons when mode is "scroll". The available options are:
"auto"— Displays scroll buttons only when needed."hidden"— Hides the scroll buttons at all times."visible"— Always shows the scroll buttons.
Example
<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
resizable: {
toolbar: {
mode: "scroll",
scrollButtons: "visible"
}
}
});
</script>
In this article