Frontmatter
| id | 9114 |
| title | DevIndex: Add Status Toolbar and Progress Indication |
| state | Closed |
| labels | enhancementai |
| assignees | tobiu |
| createdAt | Feb 12, 2026, 5:05 PM |
| updatedAt | Feb 12, 2026, 6:11 PM |
| githubUrl | https://github.com/neomjs/neo/issues/9114 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Feb 12, 2026, 6:11 PM |
DevIndex: Add Status Toolbar and Progress Indication
tobiu assigned to @tobiu on Feb 12, 2026, 5:15 PM

tobiu
Feb 12, 2026, 6:11 PM
Input from Gemini 3 Pro:
✦ I have completed the task.
Changes:
Framework Enhancement (Grid):
Neo.grid.Containernow supports afooterToolbarconfig.- Added
Neo.grid.footer.Toolbarbase class and SCSS.- Updated
Neo.grid.Containerlayout tovboxwithflex-direction: columnto correctly stack header, body, and footer.- Ensured
footerToolbarreceives the grid'sstorereference automatically.Framework Enhancement (Data):
Neo.data.proxy.Streamnow firesprogressevents withloadedandtotalbytes.Neo.data.Storerelays theseprogressevents.DevIndex Application:
- Created
DevIndex.view.home.StatusToolbarextendingNeo.grid.footer.Toolbar.- This toolbar listens to the store's
progressandloadevents to show a progress bar and a "Visible Rows" count.- Removed the static "Visible Rows" label from
ControlsContainer.- Updated
GridContainerto use the newStatusToolbar.The grid now displays a sticky footer with a real-time progress bar during data streaming and a live row count.
tobiu closed this issue on Feb 12, 2026, 6:11 PM
Neo.grid.Containerto supportfooterToolbar_config, mirroringheaderToolbar.Neo.data.proxy.Streamto fireprogressevents (bytes loaded vs total) whenContent-Lengthis available.DevIndex.view.home.StatusToolbarcontaining:Neo.component.Progresslinked to the stream proxy.DevIndex.view.home.GridContainerto use the new footer toolbar.DevIndex.view.home.ControlsContainer.