Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a data table in my application. One column have heavy data which increasing the width of table.

I want to split the data to two or more lines in that column.

I have tried by setting width for that column but data did't split and doesn't show total data.

<p:column headerText="#{msgs['exception.label.exceptionMsg']}" width="200">
         <h:outputText value="#{exception.exceptionMsg}"/>
</p:column>

How can i split the data?

share|improve this question
Try the <h:panelGroup:> component and specify rules=rows to display lines between each row – kolossus Feb 15 at 12:51
"split" isn't exactly the right keyword, you don't want to have multiple text components, you need "wrap". – BalusC Feb 15 at 13:18

1 Answer

up vote 6 down vote accepted

The .ui-datatable tbody td has a default style of white-space: nowrap, meaning that long texts won't wrap. You want to override this style by setting it back to white-space: normal.

E.g.

<p:column width="200" styleClass="wrap">

with this CSS

.ui-datatable tbody td.wrap {
    white-space: normal;
}

See also:

share|improve this answer
+1 for the simple CSS solution. Sometimes its not the JSF or the Java that needs tweaking, its just CSS magic. – Mindwin Feb 15 at 13:56
Thank you BalusC for answer but, Lines are breaking when data have spaces in it. Lines with continuous lines are not breaking. please tell me how to break for continuous lines. – Teja Maridu Feb 28 at 7:27
I have tried like this <p:column headerText="message" width="50" style="white-space: normal;"> <h:outputText value="#{message.msgHeader}" id="msgHeader"/> </p:column> – Teja Maridu Feb 28 at 7:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.