我有一个带有很多工具的Kendo Jquery编辑器。无论工具栏中的可用空间如何,我都需要显示编辑器中的所有工具。我需要那些不适合第一行的人去第二行/下一行,而不是被推入溢出锚点。当前,任何不适合该空间的工具都会被推送到“更多工具”菜单。
示例代码:
$("#editor").kendoEditor({
tools: [
"bold",
"italic",
"underline",
"strikethrough",
"justifyLeft",
"justifyCenter",
"justifyRight",
"justifyFull",
"insertUnorderedList",
"insertOrderedList",
........
您可能将resizable.toolbar
设置为true吗?
resizable.toolbar
Boolean如果
resizable
为set
为true,则该小部件将检测到视口宽度的变化,并>将溢出的控件隐藏在工具溢出弹出窗口中。
尝试将其设置为false:
$("#editor").kendoEditor({
resizable: {
toolbar: false
}
});