Skip to content

Commit 410d093

Browse files
committed
Fix the issue for the select space key (find the correct checkbox)
1 parent 22a4cc6 commit 410d093

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/igniteui-angular/src/lib/grids/filtering/excel-style/excel-style-search.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,7 @@ export class IgxExcelStyleSearchComponent implements AfterViewInit, OnDestroy {
788788
const dataItem = this.displayedListData[this.focusedItem.index];
789789
const args: IChangeCheckboxEventArgs = {
790790
checked: !dataItem.isSelected,
791-
checkbox: this.checkboxes.find((x,id) => id === this.focusedItem.index)
791+
checkbox: this.checkboxes.find(x => x.value === dataItem)
792792
}
793793
this.onCheckboxChange(args);
794794
}

0 commit comments

Comments
 (0)