I have a corner element
<mat-checkbox class="btn-block"
labelPosition="before"
(change)="showOptions($event)"
(click)="makeJSON($event.checked,i,j,k)">
</mat-checkbox>
Here onchange (which actually gives the status of checkout) performs some other task, and I want the status of checkbox (either checked or not) for the click event.
I have already tried to view the object created by a click, and there is no click object inside it, since I can determine if the checkbox is checked or not.
source
share