-
-
Notifications
You must be signed in to change notification settings - Fork 202
Fix Grid Column Drag & Drop Regression #9181
Copy link
Copy link
Closed
Labels
Description
Recent optimizations in Neo.grid.Body introduced a force parameter to createViewData(silent=false, force=false).
The SortZone class currently calls this method without arguments, defaulting force to false.
This prevents the grid body from correctly refreshing after a column reorder.
We need to update onDragEnd to call createViewData(false, true) to ensure the view reflects the new column order.
Reactions are currently unavailable