I have an editor on a razor page:
I have updated to the latest version of Kendo. In the release notes, it states as a new feature, "Ability to show the editor toolbar on focus". How can I do this?
Thanks,
Nick
@(Html.Kendo().EditorFor(model => model.Message.MessageText)
.Name("Message.MessageText")
.HtmlAttributes(new { style = "height:550px" })
.Tools(tools => tools
.Clear()
.Bold()
.Italic()
.Underline()
.Strikethrough()
.FontColor()
.BackColor()
.InsertOrderedList()
.InsertUnorderedList()
.Indent()
.Outdent()
.CreateLink()
.Unlink()
)
)
Thanks,
Nick