Frontmatter
| tagName | 10.5.2 |
| name | Neo.mjs v10.5.2 Release Notes |
| publishedAt | 8/14/2025, 10:40:10 AM |
| isPrerelease | |
| isDraft |
Neo.mjs v10.5.2 Release Notes
Features
- grid.Container: Added the
aria-colcountattribute to the grid's wrapper element to enhance accessibility. - This attribute dynamically updates with the number of columns, ensuring screen readers can accurately announce the grid's structure.
Enhancements
- grid.Container: The
updateColCount()method now includes asilentparameter. This allows for updating the column count without triggering an immediate DOM update, optimizing performance in scenarios where multiple changes occur in sequence. - examples.grid.bigData.ControlsContainer: To improve user feedback, a loading mask is now displayed during the initial data filtering process in the Big Data grid example.
Bug Fixes
- data.Store: Fixed an issue where the
isLoadedflag was not set totruewhen records were added to the store via theadd()method. This ensures that theloadevent is fired correctly, even when the store is populated manually instead of through assigningdataorautoLoad.