I've a problem with datepicker and Angular2 Material.
When I tried to use this control, I get this error:
ERROR Error: "[object Object]"
I have the references done at app_module, I took the original code from official material web: Date Picker Examples Angular Material.
<mat-form-field class="example-full-width">
<input matInput [matDatepickerFilter]="myFilter" [matDatepicker]="picker" placeholder="Choose a date">
<mat-datepicker-toggle matSuffix [for]="picker"></mat-datepicker-toggle>
<mat-datepicker #picker></mat-datepicker>
</mat-form-field>