如何将自定义工具添加到kendo editor toolbar
?
我想添加拼写检查, 媒体管理器和剪切,复制,粘贴和剪切从单词,复制从单词和一些更多的工具也。
我在MVC应用程序中使用Kendo编辑器。
答案 0 :(得分:4)
我正在使用自定义工具在应用程序中添加链接引用,方法是从现有应用程序中搜索它们。
此处您是从我的来源剪下的代码
@(Html.Kendo()
.Editor()
.Name("Content")
.Tools(tools => tools
.Clear()
.Bold().Italic().Underline().Strikethrough()
.JustifyLeft().JustifyCenter().JustifyRight().JustifyFull()
.InsertUnorderedList().InsertOrderedList()
.Outdent().Indent()
.CreateLink().Unlink()
.InsertImage()
.SubScript()
.SuperScript()
.TableEditing()
.ViewHtml()
.Formatting()
.CleanFormatting()
.FontName()
.FontSize()
.FontColor()
.BackColor()
.CustomButton(cb => cb
.Name("Add link to article")
.ToolTip("Add link to article")
.Exec("execFunction")
))
.Encode(false)
.ImageBrowser(imageBrowser => imageBrowser
.Image("~/Content/Uploads/Images/{0}")
.Read("Read", "ImageBrowser")
.Create("Create", "ImageBrowser")
.Upload("Upload", "ImageBrowser")
.Thumbnail("Thumbnail", "ImageBrowser")))
所以这些是我对编辑器的配置。我想你只对.CustomButton感兴趣(cb => cb.Name /这是必要的/ cb.Exec /也是neccesary /。 在Exec中,传递单击按钮时应执行的JS函数的名称。您可以将JS与ajax连接到控制器。我会和你分享我的。
function execFunction(e) {
$.get('/Articles/BuildLinkView', null, function(data) {
$('#addLinkHolder').html(data);
$('#addLinkHolder').css('display', 'table-cell');
});
}
当你将它绑定到控制器时,你可以用它做任何你想做的事。
我希望这能解决你的问题。如果没有,请提供其他信息