I got an app that uses a schema to define the columns of an editable mat-table.
The problem is that when I click the pencil, the checkboxes aren't clickable. For more details, I suggest you go see the stackblitz project.
https://stackblitz.com/edit/angular-ivy-tjsqam?file=src/app/app.component.html
Code example :
<div *ngIf="col.key != 'isEdit'">
<input
[type]="col.type"
[(ngModel)]="element[col.key]"
[checked]="GetCheckBoxValue(element, col.key)"
/>
In not editing mode :
In editing mode :

