1

I want to reset the selected rows to all deselect via TS. Resetting the table does not update the selected rows.

<p-table [value]="groups" [(selection)]="selectedgroups">

TS:

import { Table } from 'primeng/table';

@ViewChild(Table) dataTableComponent: Table;
selectedgroups = [];

resetTable() {
  this.dataTableComponent?.reset();
}
Lulutho Mgwali
  • 823
  • 1
  • 11
  • 33

1 Answers1

3

You can reset table by assigning empty value to selected-groups property

resetTable() {
        this. selectedgroups = [];
}
Chellappan வ
  • 23,645
  • 3
  • 29
  • 60