2016-04-14 38 views
0

滾動條我定義爲低於劍道編輯:如何從劍道編輯文本區域

@(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>) 
) 

當我運行我的代碼,水平滾動條出現在編輯器的底部。

我想刪除水平滾動條。我怎樣才能做到這一點?

謝謝!

回答

0

我得到了我自己的問題的答案。將class =「container-fluid」添加到我的分區幫助。

謝謝!