Answers for "telerik raddatepicker default date today wpf"

C#
0

telerik raddatepicker default date today wpf

Ok I have solved the problem. The binding DataType to the column is DateTime, which don't accept null values. Null values is what the GridView produces upon clicking add new row. When such thing happens, DateTime will auto return 01/01/0001, which is then passed to the RadDatePicker. The solution is to change the datatype to Nullable DateTime, which is 'DataType?'.
Posted by: Guest on April-09-2020

Code answers related to "telerik raddatepicker default date today wpf"

C# Answers by Framework

Browse Popular Code Answers by Language