css - Error when colunm's width is fixed in p:column primefaces -
i want define fixed width column, have this:
<p:column style="min-width: 10px;max-width: 10px" >
but when text long, not show correctly, it's truncate, example:
my text: "this large text, not long", get:
|"this large text, |
what want:
|"this large text, |
|but not long" |
add css:
.ui-datatable-tablewrapper tbody td { white-space: normal !important; }
if treetable:
.ui-treetable tbody td { white-space: normal !important; }
Comments
Post a Comment