The new headerVissible not working?
See original GitHub issueDescribe the bug
The new headerVissible
not working?
Tabulator Info
- 4.4.1
Working Example
<body>
<div id="accounts"> </div>
<script>
function onLoad() {
var table = new Tabulator("#accounts", {
headerVisible:true, //hide column headers
layout:"fitColumns", //fit columns to width of table
responsiveLayout:"hide", //hide columns that dont fit on the table
tooltips:true, //show tool tips on cells
addRowPos:"top", //when adding a new row, add it to the top of the table
resizableRows:true, //allow row order to be changed
columns:[
{title:"Status", field:"status"},
{title:"Account", field:"account"}
],
data:[
{id: 1, status: "Status", account: "Account 1"},
{id: 2, status: "Status", account: "Account 2"},
{id: 3, status: "Status", account: "Account 3"},
{id: 4, status: "Status", account: "Account 4"},
{id: 5, status: "Status", account: "Account 5"},
]
});
}
window.onload = onLoad;
</script>
</body>
To Reproduce
If you set headerVisible:false
, the whole grid disappears, not just the headers.
Expected behavior Hide the headers, but show the data.
Desktop (please complete the following information):
- OS: Windows 10
- Browser Chrome
- Version 76
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Corrupt MP4 files from a Sony Xperia - strange header vissible ...
I have tried things like striping the weird header and zeros and replacing it with the header from the working files - and...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
fix confirmed in 4.4.3, thanks!!
Hey @hrstoyanov
Thanks for the headsup, i will get this fixed for the next release.
Cheers
Oli 😃