Reputation: 13
I implemented the flexible height plugin to enable ng-grid to grow and shrink when it's container grows and contracts - no problems there. However, now the fixed header is no longer fixed. Anyone ever run across this issue?
Upvotes: 1
Views: 3678
Reputation: 8331
Just add
.ngHeaderScroller{
position:fixed;
}
to your css and this should work.
Upvotes: 1