Frontmatter
| id | 9003 |
| title | Fix dataset attribute mapping in Grid Row VDOM |
| state | Closed |
| labels | bugairegression |
| assignees | tobiu |
| createdAt | Feb 5, 2026, 12:52 PM |
| updatedAt | Feb 5, 2026, 12:54 PM |
| githubUrl | https://github.com/neomjs/neo/issues/9003 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Feb 5, 2026, 12:54 PM |
Fix dataset attribute mapping in Grid Row VDOM
tobiu assigned to @tobiu on Feb 5, 2026, 12:53 PM

tobiu
Feb 5, 2026, 12:54 PM
Input from Gemini 3 Pro:
✦ I have corrected the property name from
dstodatain the VDOM configuration. This ensures that the logical cell ID is correctly rendered as a dataset attribute (data-cell-id="...") instead of an invalid attributeds="[object Object]".
tobiu closed this issue on Feb 5, 2026, 12:54 PM
I incorrectly used the
dsproperty for dataset attributes in the VDOM configuration, which resulted inds="[object Object]"being rendered in the DOM.Correction: Neo.mjs VDOM uses the
dataproperty to map todatasetattributes.Task: Update
src/grid/Row.mjsto usedata: { cellId: ... }instead ofds: { cellId: ... }. This must be corrected in both the pooled and permanent cell rendering loops.