This question is locked. New answers and comments are not allowed.
My code is similar to this one: http://demos.telerik.com/aspnet-mvc/grid/editingajax
The DateTime partial view:
@model DateTime?
@( Html.Telerik().DatePickerFor(m => m) )
and the binding in the grid:
columns.Bound(p => p.Timestamp).Width(110);
And the field in my model class:
public DateTime Timestamp
{
get; set;
}
However, when I enter value bigger that 12 for a day, I get error the field must be a date. This is so annoying! How to resolve it?