Reputation: 26
What is the right way to keep column header in sync with body
I have tried (http://jsfiddle.net/wLPLA/4/) and got:
if number of columns is equal to 150
the cells of header row rendered wrong -- distorted at the end of row
If number of columns is equal to 200
the header row got wrapped
What is wrong? Has anybody got the same problem? Any fix?
Upvotes: 1
Views: 1415
Reputation: 21
It sounds like the problem is because of this line in slick.grid.js:212
try changing the width from 10000px to 20000px. I have a working jsfiddle here.
Upvotes: 2