I want to use Angular Material Datepicker to get a date into my page. I use this code, but cannot figure out how to access the selected value correctly.
<md-input-container>
<input mdInput [mdDatepicker]="myDatepicker">
<button mdSuffix [mdDatepickerToggle]="myDatepicker"></button>
</md-input-container>
<md-datepicker #myDatepicker></md-datepicker>
I tried the [value]
field in input but how can I get the date to send it to my backend?
Thanks.
input
:ngModel
if you're using Template forms orformControl
/formControlName
for Model Driven.. – developer033ngModel
you can see the value of field in component. – developer033