当我单击格式时,它会被锁定,之后无法在编辑器中输入任何内容。当格式按钮位于页面中间时会发生这种情况。
如下所示,如果格式下拉菜单中没有空格,那么它看起来很完美。
图片上传中也会发生同样的事情。
从这里获得源代码:https ://demos.telerik.com/kendo-ui/editor/imagebrowser
这是我为实现剑道编辑器而添加的代码
$(function () {
$("#quest").kendoEditor({
imageBrowser: {
transport: {
read: "@Url.Action("Read", "ControlerName")",
destroy: {
url: "@Url.Action("Destroy", "ControlerName")",
type: "POST"
},
create: {
url: "@Url.Action("Create", "ControlerName")",
type: "POST"
},
thumbnailUrl: "@Url.Action("Thumbnail", "ControlerName")",
uploadUrl: "@Url.Action("Upload", "ControlerName")",
imageUrl: "@Url.Action("Image?path={0}", "ControlerName")",
}
},
tools: [
"formatting",
"bold",
"italic",
"underline",
"superscript",
"subscript",
"justifyLeft",
"justifyCenter",
"justifyRight",
"VerticalAlignTop",
"Vertical-AlignTop",
"Verticaltop",
"insertUnorderedList",
"insertOrderedList",
"indent",
"outdent",
"insertImage",
"createTable",
"addRowAbove",
"addRowBelow",
"addColumnLeft",
"addColumnRight",
"deleteRow",
"deleteColumn"
]
})"