Skip to content

Commit

Permalink
Added getTableData method
Browse files Browse the repository at this point in the history
  • Loading branch information
tsv2013 committed Aug 19, 2024
1 parent eb7c5e8 commit 80673a1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/tables/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@ export abstract class Table {
protected _rows: TableRow[] = [];
protected isColumnReorderEnabled: boolean;

public getTableData(): Array<any> {
return [].concat(this.tableData || []);
}
/**
* Sets pagination selector content.
*/
Expand Down

0 comments on commit 80673a1

Please sign in to comment.