Skip to content

Commit 7938143

Browse files
committed
Table: don't scroll when pressing space on header item
If the table is part of a scrollable container, pressing space on a table header item would scroll the container. 450639
1 parent 3878990 commit 7938143

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

eclipse-scout-core/src/table/TableHeader.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -670,6 +670,7 @@ export class TableHeader extends Widget implements TableHeaderModel {
670670
if (scout.isOneOf(event.which, keys.ENTER, keys.SPACE)) {
671671
this._doHeaderItemAction($(event.currentTarget));
672672
event.stopPropagation();
673+
event.preventDefault(); // Don't scroll when pressing space
673674
}
674675
}
675676

0 commit comments

Comments
 (0)