输入长文本时如何防止拉伸表格:
画面:http: //zapodaj.net/71821572f2445.jpg.html
Meyby 是否可以使文本行水平拉伸?
我的片段示例表:
<p:dataTable id="table" styleClass="table" value="#{userMB.allInactive}" var="inactive" paginator="true" rows="15" rowKey="#{inactive.id}" selection="#{userMB.user}" selectionMode="single" >
<f:facet name="header">
Lista kont nieaktywnych
</f:facet>
<p:column headerText="#{msg.firstName}">
<h:outputText value="#{inactive.firstName}" />
</p:column>
我为列尝试<p:column headerText="#{msg.firstName}" width="20px">
了 styleClass:<p:column styleClass="column" headerText="#{msg.firstName}" width="20px">
.column {
width: 20px;
}
但我没有看到任何变化,它不起作用。