I am looking for a solution that keeps open the Angular Material Datepicker or mat-datepicker after choosing date.
I had followed this solution, the only problem with solution is every time I choose date it closes and reopens with animation. My every try failed to stop that animation.
How to keep mat-datepicker calender open, even after selecting a date from calendar?
Below is the code of mat datepicker
<mat-form-field class="example-full-width">
<input matInput [matDatepicker]="picker" aria-owns="mat-datepicker-0" placeholder="Choose a date">
<mat-datepicker #picker class="d-block"></mat-datepicker>
</mat-form-field>