resizable.toolbar Boolean
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.
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>