scroll with css
scroll with css
how to add scroll-x with css.
add css as
table.display tbody{
max-width: 200px;
overflow-x: scroll;
overflow-y: auto;
}
my test case
https://live.datatables.net/xulecoko/1/edit
but scroll not appear to the table body.
how to add it to the table body with css only.
possible ?
This discussion has been closed.
Answers
Nope. If it was possible, we'd have taken that approach in DataTables core. It is something I look into on a regular basis, but there just isn't the browser support for vertical scrolling the
tbody, which is exceptionally frustrating. The hardest and most time consuming part of the DataTables code is the scrolling code!Horizontal scrolling can be faked by putting the table into a
divand making thatoverflow-x: auto, but vertical scrolling, no - not until the browsers support it.Allan
Okay Allan.
Cheers.