We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5614852 commit e51cee3Copy full SHA for e51cee3
src/app/shared/components/ant-table/ant-table.component.html
@@ -62,7 +62,7 @@
62
@for (row of _dataList; track trackByTableBody(rowIndex, row); let rowIndex = $index) {
63
<tr>
64
@if (_tableConfig.showCheckbox) {
65
- <td class="animate-bg-0" nzEllipsis [nzChecked]="row['_checked']" [nzLeft]="true" (nzCheckedChange)="checkRowSingle($event, rowIndex)"></td>
+ <td class="animate-bg-0" nzEllipsis [nzDisabled]="row['_disabled']" [nzChecked]="row['_checked']" [nzLeft]="true" (nzCheckedChange)="checkRowSingle($event, rowIndex)"></td>
66
}
67
@for (head of _tableConfig.headers; track head) {
68
@if (head.show === undefined || head.show === true) {
0 commit comments