I am converting a site wirtten in MVC to Kenod.
In a model, the date field, "StartDateSelected" is text and changing that would be difficult.
Is there a way to make the DatePickerFor bind to a text field instead of DateTime?
In a model, the date field, "StartDateSelected" is text and changing that would be difficult.
Is there a way to make the DatePickerFor bind to a text field instead of DateTime?
@(Html.Kendo().DatePickerFor(model => model.StartDateSelected) .Name("StartDateSelected") .Min("1/1/1999") .Value(Model.StartDateSelected) )