Can we make column freeze as user specific in handsontable v11?
Do column freeze can be user specific
Do you mean if users can make manualColumnFreeze from contextMenu so they can freeze columns by themselves?
Like Differnt user can choose differnet column freeze and when they come again to the table they sees their colum freeze
you can check the PersistentState
(ref: https://handsontable.com/docs/api/persistent-state/#options) it works on the localStorage in the Client’s browser, so
(+) you do not need to set up anything else than just adding one line to the code
(-) it’s only on that given browser
to keep the frozen column on any browser you would need to alter the logic of the contextMenu
option to save that given column index in the Client’s cellmeta. Then after they log in again use that index within fixedColumnsLeft
.