angular two datepickers

Solutions on MaxInterview for angular two datepickers by the best coders in the world

showing results for - "angular two datepickers"
Joselyn
06 Jan 2021
1   <div class="item item-1" fxFlex="50%" fxFlexOrder="1">
2      <mat-form-field>
3         <input matInput [matDatepicker]="picker" placeholder="{{'PORTAL.STARTDATE' | translate}}" type="text" formControlName="startDate" [(ngModel)]="unavailability.startDate" [readonly]="!componentPermission.writePermission">
4         <mat-datepicker-toggle matSuffix [for]="picker"></mat-datepicker-toggle>
5         <mat-datepicker #picker></mat-datepicker>
6      </mat-form-field>
7   </div>
8