I have a Kendo Jquery Editor with a lot of tools. I need to show all the tools inside the editor regardless of the available space in the toolbar. I need the ones that don't fit in the first line to go to the second/next line instead of being pushed into the Overflow Anchor. Currently, any tool that doesn't fit into the space gets pushed to the "more tools" menu.
Sample code:
$("#editor").kendoEditor({
tools: [
"bold",
"italic",
"underline",
"strikethrough",
"justifyLeft",
"justifyCenter",
"justifyRight",
"justifyFull",
"insertUnorderedList",
"insertOrderedList",
........
Do you maybe have resizable.toolbar
set to true?
resizable.toolbar
BooleanIf
resizable
isset
to true the widget will detect changes in the viewport width and will >hide the overflowing controls in the tool overflow popup.
Documentation: resizable.toolbar
Try to set it on false:
$("#editor").kendoEditor({
resizable: {
toolbar: false
}
});