【发布时间】:2016-04-14 14:48:18
【问题描述】:
我有一个定义如下的剑道编辑器:
@(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>)
)
当我运行我的代码时,编辑器底部会出现一个水平滚动条。
我想移除水平滚动条。我怎样才能做到这一点?
谢谢!
【问题讨论】:
标签: kendo-editor