We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Bug
Datepicker should work
Datepicker is throwing exception
Use IE 11, go to https://material.angular.io/components/datepicker/overview, then try open datepicker
Material Beta.12
I think this is introduced after #5747.
https://github.com/angular/material2/blob/master/src/lib/core/datetime/native-date-adapter.ts#L74, useUtcForDisplay is hard coded to true. According to https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DateTimeFormat IE 11 doesn't support timeZone option.
I tested the following script on IE 11 console, it is returning error.
var options = { year: 'numeric', month: 'short', timeZone: 'utc' }; console.log(new Intl.DateTimeFormat('en-US', options).format(new Date()));
The text was updated successfully, but these errors were encountered:
#7858 turns useUtcForDisplay off for IE
Sorry, something went wrong.
This issue has been automatically locked due to inactivity. Please file a new issue if you are encountering a similar or related problem.
Read more about our automatic conversation locking policy.
This action has been performed automatically by a bot.
mmalerba
Successfully merging a pull request may close this issue.
Bug, feature request, or proposal:
Bug
What is the expected behavior?
Datepicker should work
What is the current behavior?
Datepicker is throwing exception
What are the steps to reproduce?
Use IE 11, go to https://material.angular.io/components/datepicker/overview, then try open datepicker
What is the use-case or motivation for changing an existing behavior?
Which versions of Angular, Material, OS, TypeScript, browsers are affected?
Material Beta.12
Is there anything else we should know?
I think this is introduced after #5747.
https://github.com/angular/material2/blob/master/src/lib/core/datetime/native-date-adapter.ts#L74, useUtcForDisplay is hard coded to true. According to https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DateTimeFormat IE 11 doesn't support timeZone option.
I tested the following script on IE 11 console, it is returning error.
var options = { year: 'numeric', month: 'short', timeZone: 'utc' };
console.log(new Intl.DateTimeFormat('en-US', options).format(new Date()));
The text was updated successfully, but these errors were encountered: