Single Line Per Row
Single Line Per Row
Is there any simple way of sizing columns such that all each row will take up no more than one line? (Other than making the table very wide)
My table seems to be sizing to 100% which just makes it clumpy. I'd prefer to have a long horizontal scroller on this one.
Thanks,
Chris.
My table seems to be sizing to 100% which just makes it clumpy. I'd prefer to have a long horizontal scroller on this one.
Thanks,
Chris.
This discussion has been closed.
Replies
I just adjusted the css for table.dataTable td
to as follows:
table.dataTable td {
padding: 3px 10px;
width: 1px;
white-space: nowrap;
}