Frontmatter
| id | 9522 |
| title | Grid Column Resizing: Header Logic and Update on Drop |
| state | Closed |
| labels | enhancementaigrid |
| assignees | tobiu |
| createdAt | Mar 20, 2026, 10:54 AM |
| updatedAt | Mar 20, 2026, 12:09 PM |
| githubUrl | https://github.com/neomjs/neo/issues/9522 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Mar 20, 2026, 12:09 PM |

Description
Implement drag-and-drop based resizing for Grid column headers. This ticket covers the first phase: adding the resize handles to the header buttons and updating the grid body cells only after the drag operation is completed (on drop).
Tasks
src/grid/header/plugin/Resizable.mjsextendingNeo.plugin.Resizable.directions: ['r']).onDragEndin the plugin to calculate the new width and apply it to the header button.passSizeToBody()on the parentgrid.header.Toolbarso the grid body synchronizes the cell widths.src/grid/header/Button.mjswith a newresizable_config that dynamically adds the plugin when enabled.Note
Real-time body updates during the
drag:moveoperation are out of scope for this ticket and will be handled in a follow-up ticket.