0
edelivery created
5 Answer(s)
-
0
MVC or Angular?
-
0
i'm using Angular
-
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.
-
0
Thank you so much
-
0
I am using MVC . Can you give solution please?