How can I edit a combination of two fields in the template?
columns.Bound(b => b.BeginDate)
.ClientTemplate("#= getDates(BeginDate,EndDate) #")
.EditorTemplateName("ClientEditor");
ClientTemplate - no problem, shows that you need and how you need just two field
EditorTemplateName:
@model DateTime?
<div>@(Html.Kendo().DatePickerFor(m => m))</div>
<div>@(Html.Kendo().DatePickerFor( ?????? ))</div>
columns.Bound(b => b) - is not working :(
.EditorViewData(new { endDate = #= EndDate # }) - is not working :(