jspreadsheet / ce

Jspreadsheet is a lightweight vanilla javascript plugin to create amazing web-based interactive tables and spreadsheets compatible with other spreadsheet software.
https://bossanova.uk/jspreadsheet/v4
MIT License
6.73k stars 825 forks source link

Nested header is not showing on scrolling vertically. #781

Open Ilayaraja-n opened 4 years ago

Ilayaraja-n commented 4 years ago

Nested header is not showing on scrolling vertically.

Note: This issue is not available in the jExcel version 2.1.0

Nested_Header_1 Nested_Header_2

heidashuaiheniwawa commented 2 years ago

you can try to add css: .jexcel > thead { top: 0 !important; position: -webkit-sticky !important; position: sticky !important; z-index: 3 !important; }

fkreis commented 11 months ago

Experiencing the same issue in Jspreadsheet v4.10.1 Workaround for me as an adjusted version of @heidashuaiheniwawa suggestion:

.jexcel > thead {
            top: 0 !important;
            position: sticky !important;
        }