Hi
I have problem binding DateTime field. I modified your example :https://demos.telerik.com/aspnet-mvc/spreadsheet/datasource
and added
[DataType(DataType.Date)]
public DateTime TimeTest
{
get;
set;
} = DateTime.Today;
to SpreadsheetProductViewModel.cs
It displays the TimeTest field properly in excel sheet, but if I modify the date and submit the change, ModelState validation fails with following error:
The models contain invalid property values.The value 'Sat Jan 20 2018 00:09:00 GMT-0800 (Pacific Standard Time)' is not valid for TimeTest.
Please advice,
Thank you,