Site icon NgDeveloper

How to truncate td value in icefaces (jsf)

You can truncate the td value in jsf icefaces like this,

You have to add “word-break:break-all” to your table style property.

It will look like this,

<ice:dataTable style=”word-break:break-all”>

<ice:colomn style=”white-space:normal;”> </ice:column>

</ice:dataTable>

Ensure you have given the columnWidths property also to your datatable.

Recommended Books:

Exit mobile version