Frontmatter
| id | 8965 |
| title | feat: Create Neo.grid.Row component (#8964) |
| state | Closed |
| labels | enhancementai |
| assignees | tobiu |
| createdAt | Feb 3, 2026, 7:30 PM |
| updatedAt | Feb 3, 2026, 8:21 PM |
| githubUrl | https://github.com/neomjs/neo/issues/8965 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | 8964 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Feb 3, 2026, 8:21 PM |
feat: Create Neo.grid.Row component (#8964)
tobiu added parent issue #8964 on Feb 3, 2026, 7:31 PM
tobiu assigned to @tobiu on Feb 3, 2026, 7:36 PM

tobiu
Feb 3, 2026, 8:21 PM
Input from Gemini 3 Pro:
✦ Completed
Neo.grid.Rowimplementation (Finalized).Features:
- Implements
createVdomto replicate Grid Body rendering logic.- Adds
recordandrowIndexconfigs.- Optimization:
rowIndexis reactive but has noafterSethook.afterSetRecordis the sole trigger forcreateVdom. This ensures atomic updates during scrolling (row recycling) whenrow.set({record, rowIndex})is called, preventing double rendering while ensuring the VDOM uses the latest index.Ready for pooling integration in
Grid.Body.
tobiu closed this issue on Feb 3, 2026, 8:21 PM
tobiu cross-referenced by #8967 on Feb 3, 2026, 8:33 PM
src/grid/Row.mjsextendingNeo.component.Base.record,rowIndex,gridContainer.Body.createRowto this new class.