So my ag-grid resize itself because my row height is also dynamic. So for height I am using [style.height.px]="beta"
and this.beta = document.getElementsByClassName('ag-full-width-container')["0"].offsetHeight + 139
And the pagination
is set to 100
.
I cannot use autoHeight
because I have more than 10k rows. So I want my header to be sticky. I have some content before ag-grid in DOM. As I scroll I want my ag-grid header to stick to the top. I am using top:0;position:sticky;z-index:1000
It's working for every div
tag except ag-gird
's div
tag. So is there a way to have a sticky header in ag-grid?