Answers for "date and time picker in angular material"

R
0

material datepicker

<mat-form-field class="example-full-width" appearance="fill">
  <mat-label>Choose a date</mat-label>
  <input matInput [matDatepicker]="picker">
  <mat-datepicker #picker></mat-datepicker>
</mat-form-field>
<button mat-raised-button (click)="picker.open()">Open</button>
Posted by: Guest on December-23-2020
0

angular material number picker

<md-input-container>
    <input
        mdInput
        type="number"
        id="myNumber"
    />
</md-input-container>
Posted by: Guest on August-17-2020
-1

angular date picker

<input [owlDateTime]="dt1" [owlDateTimeTrigger]="dt1" placeholder="Date Time">
<owl-date-time #dt1></owl-date-time>
Posted by: Guest on July-09-2021

Browse Popular Code Answers by Language