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.
Motivation
I'm a big fan of Mantine DataTable and use it extensively in my projects. I needed the ability to pin more than just the first/last column, and I believe many users would benefit from this as well. This PR extends the pinning system to support arbitrary columns pinned to either side, with an optional interactive UI for end users.
New API
Static pinning —
pinnedprop on columnInteractive pinning — pinnable prop on column
When pinnable: true, a pin icon appears in the column header on hover. Clicking it opens a small popover where the user can choose to pin the column left, right, or unpin it. Pinning state is persisted to localStorage when storeColumnsKey is provided (works alongside existing column toggling/reordering/resizing).
What's inside
New files
Architecture
Backward compatibility
column in the DOM
Integration with existing features
Sorry for the wall of text — it's a big change so I tried to explain everything clearly.
Would love to hear your thoughts. Happy to make any changes needed.