FilamentF
Filament2y ago
Dex

Tables rendering in print view

Is it possible to show table head on each page and format the styling so the table breaks correctly?
Solution
It's not a fillament problem, just needed to use the right css:

thead {
    display: table-row-group;
}
Was this page helpful?