Hi, I work for PeakRC and we have a contract but I don't have the time to look up our account info.
I am using Telerik controls in a new MVC app that we are writing.
I have tried many variations and now I have very simple view:
@using (Html.BeginForm("_CreateMessage", "Message", FormMethod.Post, new { id = "_CreateMessage" }))
{
<fieldset>
<div class="editor-field">
@(Html.Kendo().EditorFor(item => item.Body).Encode(false))
@Html.ValidationMessageFor(item => item.Body)
</div>
</fieldset>
}
and model:
[DataType(DataType.Html)]
[AllowHtml]
public string Body{ get; set; }
the editor displays but is read only.
Help,
kwilson@peakrc.com