-
-
Notifications
You must be signed in to change notification settings - Fork 139
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not working on Edge browser #424
Comments
Same issue for me, time picker is not working on edge but works fine in chrome |
This can be worked around (read: hacked) by not using the Example Implementation
<input [ngxTimepicker]="timePicker" hidden>
<input matInput [(ngModel)]="onlyTimeString" (click)="timePicker.open()" />
<ngx-material-timepicker #timePicker (timeSet)="timeSet($event)"
[defaultTime]="onlyTimeString"></ngx-material-timepicker>
onlyTimeString: string;
timeSet(time: string): void {
this.onlyTimeString = time.replace(/\u202f/g, " ");
} For whatever reason, Edge returns a time with the character |
it's working fine for me |
Can you check it with the new version? It should be fixed |
I tried to use min and max value example (ngx-timepicker-field) but its not working on Edge browser on window platform. Its also not working for your demo in Edge browser. https://agranom.github.io/ngx-material-timepicker/
The text was updated successfully, but these errors were encountered: