Reputation: 123
I'm having a spot of trouble with ag-grid enterprise. I have a grid with groups that function sort of like a folder tree. However, the name column overlaps with the rest of the columns. This is especially apparent when resizing the columns. No other column overlaps like this. What could be causing this?
Upvotes: 2
Views: 3248
Reputation: 123
The issue fixed itself when we pinned the column to the left using pinned: left
. Doesn't make much sense to me personally but that is how we got around it.
EDIT: Further looked into it. It was a styling issue. We were setting display to flex.
Upvotes: -1
Reputation: 334
I had a similar issue. Double check your ColDefs. Someone had accidently set the width:0 to the first column and were seeing this.
Not sure about col resize as we didn't have that enabled. Still if minWidth is set (which someone could have for mobile users), it could cause this.
ColDef params:
maxWidth
width
minWidth
Upvotes: 1