我有一个定义如下的剑道编辑器:
@(Html.Kendo().Editor()
.Name("myEditor")
.Tag("div")
.Tools(tools => tools
.Clear()
.Bold().Italic().Underline().Strikethrough()
.JustifyLeft().JustifyCenter().JustifyRight().JustifyFull()
.CreateLink().Unlink()
.InsertImage()
.TableEditing()
.FontColor().BackColor()
)
.Value(@<text><p>Some content here</p></text>)
)
当我运行我的代码时,一个水平滚动条出现在编辑器的底部。
我想删除水平滚动条。我怎样才能做到这一点?
谢谢!