我正在开发一个使用 Kendo ui 的 ASP.NET MVC 应用程序。我们在其中使用了 Kendo UI 编辑器来处理富文本。它的使用方式如下:
@(Html.Kendo().Editor()
.Name("textControl-Source")
.Tools(tools => tools.Clear()
.Bold().Italic().Underline().Strikethrough()
.FontSize().FontColor().BackColor()
.JustifyLeft().JustifyCenter().JustifyRight().JustifyFull()
.InsertUnorderedList().InsertOrderedList().Indent().Outdent()
.SubScript().SuperScript())
.HtmlAttributes(new { style = "height:240px;width:98.5%", data_mintextlength = "1" })
.Events(events => events
.Change("mediaBoardEditNS.textControlChange")
.Select("mediaBoardEditNS.textControlSelect")
)
)
如果我们可以像在 Microsoft Word 字体颜色选择器中那样使用 HEX 代码以某种方式自定义它以显示自定义颜色,则存在一个要求。我在他们的论坛和 SO 上也进行了很多搜索,但找不到任何可靠的东西。让我知道我是否遗漏了什么。谢谢