vue-excel-editor
vue-excel-editor copied to clipboard
Sticky Headers
Hi, I was wondering how I could make the headers sticky instead of the column. I tried to make position: sticky and top: 0 for thead tags with css with no luck. Any suggestions on how to get it to work?
set position sticky is the only way, did you try that?
thead and tr unfortunately do not support position: sticky. th WOULD support it, but i also didnt have any luck trying that.
however you should not need to do that: the table supports a height property (or if you want finer control, size the .table-content to a specific position. then you will have a vertical scroll bar and headers are sticky.
just a small issue there: with no-mouse-scroll=false (default), i cant scroll the table anymore (interecting with the scrollbar works though) - which makes this approach useless for me..