Feature Request
There should be at least a small guide (preferably official docs) about how to use the newly (in beta 11) introduced MomentDateAdapter for the datepicker.
No docs at all.
Every feature should be documented.
Beta 11
NO
@emreavsar You just need extend "DateAdapter" class
and provide it
For example; we don't use moment.js
cause it not good for 2017, we've using date-fns
and there was no problem to set adapter for it
I don't understand why then there is this extra information of adding the moment.js adapter to datepicker in release notes? I could have done this (custom adapter by extending) before beta 11, am I wrong with this assumption?
To use the adapter, you need to import MatMomentDateModule
into your app module and you are good to go. You can use moment.Moment
objects as ngModel
for the date picker.
The problem that @angular/material-moment-adapter
module has not been published to https://npmjs.com yet. I worked around that by ripping out the sources from https://github.com/angular/material2/tree/master/src/material-moment-adapter/adapter and pasting them into a folder in my app's source tree. Works well enough for now, but I'd love to switch to a published version.
@rkrzewski You can use the builds repo: https://github.com/angular/material2-moment-adapter-builds. Just use npm install https://github.com/angular/material2-moment-adapter-builds --save
That worked like a charm @Yeradon, thanks!
Any example for using this?
+1 an example please
@yonatancohen @kwalski https://stackblitz.com/edit/angular-material-moment-adapter-example
The last 2 examples here are for moment adapter: https://material.angular.io/components/datepicker/examples
@mmalerba is there a way to change the output from iso fromat to some custom format. I dont want datepicker to work with time zones as the service crops the time part and hence when that time is given back to server we get wrong dates based on timezones
UPDATE: It is available on npm use following command to install it:
npm i @angular/material-moment-adapter
@ankitraonka
i have the same issue , do you found any solution for this ?
@Moutaz-homsi The best solution would be to use ControlValueAccessor and make a custom input component, this will have you in control of input and output of the component.
@ankitraonka, that's solve my problem for this issue , Have a great day and thanks a lot
Full process for using Moment
objects instead of Date
objects.
npm i @angular/material-moment-adapter --save
npm i moment --save
import { MatMomentDateModule } from '@angular/material-moment-adapter';
.Moment
objectsThanks a lot @ankitraonka , this solved my issue , i repreduced the code here if anyone have the same problem : https://stackblitz.com/edit/angular-dlxnmx?file=app%2Fcva-date.component.ts
The DatePicker seems to be using Moment as dates just fine. But I have a model that has a Date as a property. I changed the type from Date to Moment but when my service retrieves data from the server the property of the model is just a string:
"2018-03-31T00:00:00"
Why is this not a Moment object? Am I missing something?
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._
Most helpful comment
Full process for using
Moment
objects instead ofDate
objects.npm i @angular/material-moment-adapter --save
npm i moment --save
import { MatMomentDateModule } from '@angular/material-moment-adapter';
.Moment
objects