Reputation: 111
I am using ui-grid for displaying data. I want to hide the column header. Is there any property for this cause? Thanks
Upvotes: 11
Views: 13316
Reputation: 4514
neither showHeader nor hideHeader did anything for me. I used this:
headerCellTemplate: '<div></div>'
Upvotes: 6
Reputation: 955
This has been changed to showHeader:false
in latest version of ui-grid
(3.1.1)
Upvotes: 0
Reputation: 127
Based on Angular-ui Change log
The hideHeader
option has been changed to showHeader
To migrate, change your code from the following:
hideHeader: true
To:
showHeader: false
Upvotes: 11