This question is locked. New answers and comments are not allowed.
In my date template i write this:
And that binds just fine.
However with the editor I am doing something similar.
And it fails. Here's what comes back to the server:
"AddModel.Subject=test&AddModel.PublishingStatusId=1&AddModel.Date=26%2f08%2f2010&AddModel_Content=ma+content!"
AddModel_Content should be AddModel.Content. Date works as expected. This isn't a beta anymore is it?
<%= Html.Telerik().DatePicker().Name(ViewData.TemplateInfo.GetFullHtmlFieldName("")) %>
And that binds just fine.
However with the editor I am doing something similar.
Html.Telerik().Editor().Name(ViewData.TemplateInfo.GetFullHtmlFieldName("")).Tools((p)=>{
p.Clear();
p.FormatBlock().Bold().Italic().Underline().Strikethrough().JustifyLeft().JustifyCenter().JustifyRight().JustifyFull().InsertOrderedList().InsertUnorderedList().Indent().Outdent().CreateLink().Unlink().InsertImage();
}).Value(Convert.ToString(Model)).Render();
And it fails. Here's what comes back to the server:
"AddModel.Subject=test&AddModel.PublishingStatusId=1&AddModel.Date=26%2f08%2f2010&AddModel_Content=ma+content!"
AddModel_Content should be AddModel.Content. Date works as expected. This isn't a beta anymore is it?