I have a requirement to preselect first 20 rows in primeng table I have tried the following, but it gives an error can't bind to 'checked' since it isn't a known property of p-checkbox I have tried replacing with ngModel as written in posts but to no avail
<ng-template pTemplate="body" let-transaction let-expanded="expanded">
<tr [pSelectableRow]="transaction">
<td [hidden]='!isMultiSign'><p-tableCheckbox [checked]='isSelected(transaction)'
[value]='transaction' (onChange)='check(transaction)' [pSelectableRow]='transaction'>
</p-tableCheckbox></td>
The selection is defined by the selection value of the table. I edited primeng's example for you to show:
html
Ts