5 Answer(s)
-
0
There is no fast way to add checkboxes to
abp-table. You can add checkboxes manually.<ng-template #tableHeader> <tr> <th><input type="checkbox" /></th> <!-- You can add checkbox with your own logic to head--> </tr> </ng-template> <ng-template #tableBody let-data let-index="rowIndex"> <tr> <td><input type="checkbox" /></td> <!-- You can add checkbox with your own logic to row--> </tr> </ng-template>If yo're using the primeng, you should see the table selection documentation.
Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)
