我有一个剑道编辑器,定义如下:
@(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>)
当我在编辑器中单击时,没有显示字体格式的顶部工具栏。我想在用户在编辑器内单击时显示顶部工具栏,然后在用户在编辑器外单击时隐藏工具栏。请帮忙!
谢谢!