我想知道是否可以在剑道编辑器的字体颜色工具中删除一些颜色......实际上我有这个。
@(Html.Kendo().Editor()
.Name("Editor")
.Tools(tools => tools.Clear().FontColor())
.HtmlAttributes(new { @class = "some_class" })
.Events(e => e.Change("someEvent"))
)
我只需要允许红色和绿色。
提前致谢。