Hi I am trying to use kendo date picker for angular. Everything works fine but on page load I want to bind current date like 4 August 2021 to display automatically. I tried different ways to do that but nothing works .
Here is my markup for the date picker,
<kendo-datepicker [(ngModel)]="fromDate" format="dd MMMM yyyy"> </kendo-datepicker> 1 Answer
So,Finally I Found a solution . On ngOnInit I added this piece of code
this.fromDate = new Date(); And found my desired output
1
