Skip to content

Commit

Permalink
Fixed #14634 - Table | Built-in Ctrl+A errors when rows parameter is …
Browse files Browse the repository at this point in the history
…defined
  • Loading branch information
mehmetcetin01140 committed Jan 31, 2024
1 parent 239b86c commit 4fb0b6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/table/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3576,7 +3576,7 @@ export class SelectableRow implements OnInit, OnDestroy {

default:
if (event.code === 'KeyA' && (event.metaKey || event.ctrlKey)) {
const data = this.dt.dataToRender(this.dt.rows);
const data = this.dt.dataToRender(this.dt.processedData);
this.dt.selection = [...data];
this.dt.selectRange(event, data.length - 1);

Expand Down

0 comments on commit 4fb0b6f

Please sign in to comment.