I am trying to port my code from syncfusion to telerik kendo MVC UI, I need to show Datepicker in Grid cell, and for which I have done in grid column as:
columns.Add("TemplateCol").Title("Out of date").TemplateColumn(true).TemplateName("TemplateOutOfDate");
and for TemplateOutOfDate I have made in seperate .cshtml file as
@Html.Syncfusion().DatePicker("OutOfDate" + Model.ID.ToString(), Model.OutOfDate).DefaultDate(Model.OutOfDate).DisplayDefaultDateOnLoad(true).DateFormat(Model.DefaultDateFormat).Width(75).OnSelect("onselect")
This .cshtml
work fine in Syncfusion grid but when I port this code to Kendo().Grid
it is not working
So please tell me on we can achieve this using ClientTemplate to add DatePicker in Kendo Grid.
Thanks,Ajit
Try this
More Details