BUG?: Scroller loadingIndicator is above column headers
BUG?: Scroller loadingIndicator is above column headers
Hello Allan,
congrats for your great project here. I've been using datatables for a year.
Yesterday I stumbled over strange behaviour:
When table headers are very high (serveral lines) and the data consist only of one or two lines, the scrolling indicator set up with
[code]oScroller: { loadingIndicator: true }[/code]
appears above the table haeders!
A quick fix could be (as dataTables_scrollBody has also a z-index of 2):
[code]div.DTS div.dataTables_scrollHead { z-index: 2 }[/code]
A better fix could be centering the loading indicator div (DTS_Loading) inside the dataTables_scrollBody.
Sincerely,
Franz-Josef
congrats for your great project here. I've been using datatables for a year.
Yesterday I stumbled over strange behaviour:
When table headers are very high (serveral lines) and the data consist only of one or two lines, the scrolling indicator set up with
[code]oScroller: { loadingIndicator: true }[/code]
appears above the table haeders!
A quick fix could be (as dataTables_scrollBody has also a z-index of 2):
[code]div.DTS div.dataTables_scrollHead { z-index: 2 }[/code]
A better fix could be centering the loading indicator div (DTS_Loading) inside the dataTables_scrollBody.
Sincerely,
Franz-Josef
This discussion has been closed.
Replies
Allan