Single Line Per Row

Single Line Per Row

MrChriZMrChriZ Posts: 9Questions: 0Answers: 0
edited September 2013 in General
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.

Replies

  • MrChriZMrChriZ Posts: 9Questions: 0Answers: 0
    I'll answer my own question.
    I just adjusted the css for table.dataTable td
    to as follows:

    table.dataTable td {
    padding: 3px 10px;
    width: 1px;
    white-space: nowrap;
    }
This discussion has been closed.