GrownAssMan
GrownAssMan

Reputation: 13

ng-grid flexible height plugin and fixed header

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

Answers (1)

mainguy
mainguy

Reputation: 8331

Just add

.ngHeaderScroller{
   position:fixed;
}

to your css and this should work.

Forked Plunker here

Upvotes: 1

Related Questions