I had a few Jtable questions.
I was wondering how to get the horizontal scrollbar to appear?
How do you change the colors of the table?
Can you change the height of the header so the header titles are not cut off if they go to two lines?
4 Answer(s)
-
0
Hi,
For the last 2 questions, you can play with jTable's css definitions. For horizontal scrollbar, we haven't tried it but you can use similar jQuery libraries like this one <a class="postlink" href="https://github.com/rochal/jQuery-slimScroll">https://github.com/rochal/jQuery-slimScroll</a>.
Thanks.
-
0
The horizontal scroll bar appears in the user table. How does that appear?
-
0
Hi,
Sorry, I somehow thought about vertical scroll bars :). There is a css definition for jTable in it's css
.jtable-main-container { overflow-x: auto; }
This adds horizontal scroll bars when needed. You can override it to be
overflow-x: scroll;
if you want it to always visible or you can do it for just one specific table "#myTableId .jtable-main-container".
Thanks.
-
0
Awesome, thank you