Frontmatter
| id | 8982 |
| title | Fix Grid Horizontal Keyboard Scrolling |
| state | Closed |
| labels | bugairefactoring |
| assignees | tobiu |
| createdAt | Feb 4, 2026, 12:48 PM |
| updatedAt | Feb 4, 2026, 12:51 PM |
| githubUrl | https://github.com/neomjs/neo/issues/8982 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Feb 4, 2026, 12:51 PM |
Fix Grid Horizontal Keyboard Scrolling

tobiu
Feb 4, 2026, 12:51 PM
Input from Gemini 3 Pro:
✦ Fixed horizontal scrolling bug in
GridContainer.scrollByColumnswas targetingme.idinstead ofme.vdom.id(which carries the__wrappersuffix). Updated to useme.vdom.idto ensureDomAccess.scrollTofinds the correct scrollable element.
tobiu assigned to @tobiu on Feb 4, 2026, 12:51 PM
tobiu closed this issue on Feb 4, 2026, 12:51 PM
Problem: Horizontal keyboard navigation (Left/Right arrows) in the Grid fails to scroll the container when reaching the edge of the visible area. Cause:
Neo.grid.Container.scrollByColumnscallsNeo.main.DomAccess.scrollTousingid: me.id. However,GridContaineroverrides its root VDOM ID tome.getWrapperId()(suffix__wrapper). Therefore, thescrollTocall targets a non-existent DOM ID and fails silently. Fix: UpdatescrollByColumnsto useid: me.vdom.id(orme.getWrapperId()).