I have a popup editor template with an editor in it and I'm trying to figure out how to set the value to the model field value. I have :
But that does not work. Anyone know the answer?
@(Html.Kendo().Editor()
.Name("Body")
.HtmlAttributes(new { style = "width: 590px;height:440px" })
.Value(@Model.Body)
)
But that does not work. Anyone know the answer?