I am using angular 2 with material. I want to get the material checkbox checked or not when clicking the checkbox. I have done using passing click event to the component function. but it does not worked when using material checkbox. that works when using html check box.
<md-checkbox class="example-radio-button" [value]="hobby 1" (click)="hobbyClicked($event)">
hobby 1
</md-checkbox>
hobbyClicked(evt){
console.log(evt.target.checked); // undefined
}
Aucun commentaire:
Enregistrer un commentaire