resizable.toolbar Boolean|Object
If resizable
is set to true
the widget will detect changes in the viewport width and will hide the overflowing controls in the tool overflow popup.
If resizable.toolbar
is assigned an object, it will propagate the Toolbar.overflow configuration to the Editor's toolbar.
Tools are shown/hidden on tool group level. Tools with popup such as
fontName
,fontSize
,fontColor
,backColor
,formatting
andcreateTable
will not be moved to the tool overflow popup and will be always visible.
Example
<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
resizable: {
toolbar: true
}
});
</script>
Example
<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
resizable: {
toolbar: {
mode: "section"
}
}
});
</script>