以下のように定義された Kendo Editor があります。
@(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>)
)
コードを実行すると、エディターの下部に水平スクロールバーが表示されます。
水平スクロールバーを削除したい。どうすればそれを達成できますか?
ありがとう!