Column hide and show issue #2212
-
|
First Problem: I have an issue when hiding and showing the grid columns. How to reproduce: Hiding the column by selecting the "Hide Column" option on the header menu, then disabling the "Force Fit Column" in the grid menu, and then adding the column back from the grid menu results in unexpected behaviour. This is my code HTML This can also be noticed on https://ghiscoding.github.io/angular-slickgrid-demos/#/example04. The difference is that some parts of the gridlines are missing in my implementation(you can see the screenshot), and they are visible in the demo site. Second Problem: When you hide some of the columns, you see the misalignment of the header row with the column search fields and the column data. Sometimes, the headers snap back in position when you try to hide more columns. Code is the same as above, no change. How do we resolve these. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
|
I'm pretty sure that you're using an older version of the project and I'm pretty that most of these issues have already been fixed in newest version. I will not work on this unless you provide a full repro with current version, and the 2 ways you can provide a full repro is to create a new GitHub project that has the repro OR simply use the Stackbliz links from the homepage in Live Demos & Available Framework Wrappers and modify one of the example in Stackblitz. |
Beta Was this translation helpful? Give feedback.






I've fixed the misalignment in PR #2215 and the 1st issue you mentioned is the default behavior but it could be disabled via grid option
enableAutoSizeColumns: false, however that would cause other side effect, so I'm also adding an optiongridMenu.autoResizeColumns: falseto disable the column headers resize after closing the Grid Menu, available via PR #2216This will be available in the next v9.10.0 coming soon ⭐