【发布时间】:2016-04-01 14:15:51
【问题描述】:
我有一个剑道编辑器,定义如下:
@(Html.Kendo().Editor()
.Name("RestrictionsEditor")
.Tag("div")
.Tools(tools => tools
.Clear()
.Bold().Italic().Underline().Strikethrough()
.JustifyLeft().JustifyCenter().JustifyRight().JustifyFull()
.CreateLink().Unlink()
.InsertImage()
.TableEditing()
.FontColor().BackColor()
)
.Value(@<text> This is the Kendo Editor and it has
some anchor tags pointing to external webistes.</text>)
当我在编辑器中单击时,字体格式的顶部工具栏没有显示。我想在用户在编辑器内单击时显示顶部工具栏,然后在用户在编辑器外单击时隐藏工具栏。请帮忙!
谢谢!
【问题讨论】:
标签: kendo-editor