This example shows how Telerik DatePicker for ASP.NET MVC can be used to edit Model property.
To use specific editor template, you should first decorate the edited property of your Model with System.ComponentModel.DataAnnotations.DateType attribute:
[DataType(DataType.Date)]
public DateTime LastSupply
{
get;
set;
}
You can review EditableProduct.cs file for more information.
The next step is to create user control, which will be used to edit the Model property. In this demo Date.ascx is used to edit the LastSupply property.