Why the date-picker always empty? I tried to set the value from the typescript various way, but it always end up empty. What the right way to do it?
.ts
birthDate: new FormControl(new Date('Wed May 16 2018 00:00:00 GMT-0400')),
birthDate: new FormControl(new Date(2000, 10, 10)),
birthDate: new Date(2000, 10, 10),
.html
<kendo-datepicker formControlName="birthDate"
required></kendo-datepicker>
Thanks,
Bryian Tan