angular-material-timepicker icon indicating copy to clipboard operation
angular-material-timepicker copied to clipboard

Allow binding with moment like angular material datepicker

Open Anthony-Breneliere opened this issue 1 year ago • 0 comments

Angular material datepicker allows it, why not angular material timepicker ?

Moment has more advanced features over native Date.

<mat-form-field>
  <mat-label>Birthdate</mat-label>
  <input matInput [matDatepicker]="picker" [(ngModel)]="birthMoment" />
  <mat-datepicker-toggle matSuffix [for]="picker"> </mat-datepicker-toggle>
  <mat-datepicker #picker></mat-datepicker>
</mat-form-field>

in TS:

birthMoment: moment.Moment;

in Module:

import { MatMomentDateModule } from '@angular/material-moment-adapter';

@NgModule({
  imports: [
    // MatNativeDateModule, 
    MatMomentDateModule, 

Anthony-Breneliere avatar Mar 29 '23 02:03 Anthony-Breneliere