Hello,
I'm using ejs-grid components inside an ejs-dashboard. By default, when I set [enableStickyHeader]="true", the grid header sticks only when scrolling the parent container (i.e., outside the ejs-dashboard).
How can I make the grid header stick while scrolling inside the individual ejs-dashboard panels?
<div #scrollablePanel>
<ejs-grid #grid
*ngIf="showGrid"
[enableHover]="false"
[allowSelection]="true"
[frozenColumns]='1'
[allowSorting]='true'
[allowReordering]='true'
[allowFiltering]='true'
[gridLines]="'None'"
[aggregates]="aggregates"
[enableStickyHeader]="true"
rowHeight="24">
</ejs-grid>
</div>
Thanks for your help