feat(grid)!: replace frozen panes with pinning and sticky docking - #2782
Draft
ghiscoding wants to merge 2 commits into
Draft
feat(grid)!: replace frozen panes with pinning and sticky docking#2782ghiscoding wants to merge 2 commits into
ghiscoding wants to merge 2 commits into
Conversation
ghiscoding
marked this pull request as draft
September 8, 2026 01:17
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #2782 +/- ##
========================================
- Coverage 100.0% 98.2% -1.8%
========================================
Files 199 195 -4
Lines 25814 25888 +74
Branches 9144 9170 +26
========================================
- Hits 25814 25413 -401
- Misses 0 363 +363
- Partials 0 112 +112
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
angular-slickgrid
aurelia-slickgrid
slickgrid-react
slickgrid-vue
@slickgrid-universal/angular-row-detail-plugin
@slickgrid-universal/aurelia-row-detail-plugin
@slickgrid-universal/react-row-detail-plugin
@slickgrid-universal/vue-row-detail-plugin
@slickgrid-universal/binding
@slickgrid-universal/common
@slickgrid-universal/composite-editor-component
@slickgrid-universal/custom-footer-component
@slickgrid-universal/custom-tooltip-plugin
@slickgrid-universal/empty-warning-component
@slickgrid-universal/event-pub-sub
@slickgrid-universal/excel-export
@slickgrid-universal/graphql
@slickgrid-universal/odata
@slickgrid-universal/pagination-component
@slickgrid-universal/pdf-export
@slickgrid-universal/row-detail-view-plugin
@slickgrid-universal/rxjs-observable
@slickgrid-universal/sql
@slickgrid-universal/text-export
@slickgrid-universal/utils
@slickgrid-universal/vanilla-bundle
@slickgrid-universal/vanilla-force-bundle
@slickgrid-universal/web-mcp
commit: |
Owner
Author
Sticky Columns / RowsScreencast_20260903_184235.webmPinning Columns / RowsScreencast_20260903_005128-2.webm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Introduce a single-viewport docking architecture for pinned and sticky columns/rows.
This is an intentional major-version breaking change. It replaces the previous
multi-pane frozen UX with one native horizontal scrollbar, one native vertical
scrollbar, and per-row left/center/right cell regions.
Why
The legacy frozen-pane implementation required multiple synchronized panes and
scroll containers, making scrolling, resizing, virtualization, and maintenance
more complex. The new model follows the more predictable pinning structure used
by grids such as AG Grid.
The legacy approach had multiple scrollbars (one for each freezed panes), however with the new approach we now use single horizontal/vertical scrollbars which gives us better UI/UX. Also the legacy frozen approach was to freeze until x row/column, but the pinning is single column/row based, so the user could pin columns 0 and 2 but leave column 1 as unpinned (that wasn't possible before)
Changes
GridOption.pinningsupport for:CurrentColumn.pinningstate support.DockingController.handling, and virtualization paths where possible.
pinnedColumnandpinnedRowsgrid-option aliases in favor ofthe unified
pinningoption.1000pxcoordinate workaround from the docking renderer.Validation
git diff --checkpass.The full Cypress matrix and unit-test pass remain follow-up work. In the current
agent environment, Cypress exits with code 132 before browser startup.
Comments
This PR is the POC checkpoint. The old frozen-pane implementation is still present
temporarily so the new architecture can be reviewed in isolation. Immediately after
this PR is created, the remaining legacy frozen options, pane fields, synchronized
scroll branches, frozen SCSS, and related framework/state plumbing should be removed
as a dedicated cleanup pass.
The final production LOC will be recalculated after that legacy deletion pass.
AI / LLM assistance
debugging, demo updates, and validation support.
Checklist
TODOs
next-v11lockPinnedand we should probably add it as well (If you do not want the user to be able to pin using the UI)