以下のように定義された Kendo Editor があります。
 @(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>)
エディター内をクリックすると、フォント書式設定用の上部ツールバーが表示されません。ユーザーがエディター内をクリックすると上部のツールバーを表示し、ユーザーがエディター外をクリックするとツールバーを非表示にします。助けてください!
ありがとう!