How to set allow text wrap for certain columns?

How to set allow text wrap for certain columns?

don2don2 Posts: 27Questions: 15Answers: 0

Hi All,

How to set allow text wrap for certain columns?
need advice

many thanks in advance

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 63,534Questions: 1Answers: 10,475 Site admin
    Answer ✓

    A test case showing the issue would be really useful as I'd be able to answer based on how you are currently configuring the table.

    However, I'm guess you are using our nowrap class on the table. If so, you could use columns.className and add wrap class to the column, then in your CSS:

    td.wrap {
      white-space: normal;
    }
    

    Allan

Sign In or Register to comment.