Hello,
We've encountered a unique situation: a multilingual grid where columns can be shown or hidden (pickable / visible). When we switch languages (external parameter), the column titles update as expected in both the dropdown and the grid headers.
But, the selected columns in the dropdown are reset to their defaults.
As a result, the dropdown doesn't accurately reflect which columns are currently visible in the grid after a language change.
1st Initial state:
lang: de
col1 - pickable, not visible, (dropdown - deselected)
col2 - pickable + visible (dropdown - selected)
2nd switch lang + pick col1:
lang: en
col1 - visible (dropdown - selected)
col2 - visible (dropdown - selected)
3rd switch back to de:
lang: de
col1 - visible (dropdown - deselected)
col2 - visible (dropdown - selected)
From my layman's perspective it seems to me that the dynamic update of the column title is messing up the link / connection between the column and the underlying data.
(Thank you very much for your excellent work so far. The quality of the framework and your efforts are a true pleasure!)