We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27c2097 commit cadff07Copy full SHA for cadff07
src/table/data-grid-focus.directive.ts
@@ -57,7 +57,8 @@ export class DataGridFocus {
57
switch (event.key) {
58
case "Right": // IE specific value
59
case "ArrowRight":
60
- if (element.nextElementSibling && Array.from(headerRow).indexOf(element.nextElementSibling) < headerRow.length - 1) {
+ const firstBodyRow = rows[1].querySelectorAll("td");
61
+ if (element.nextElementSibling && Array.from(headerRow).indexOf(element.nextElementSibling) < firstBodyRow.length) {
62
event.preventDefault();
63
this.columnIndex++;
64
const nextSibling = element.nextElementSibling;
0 commit comments