我有一个类似下面片段的代码
<p:dataTable
rendered="#{Controller.lazyDataModel.rowCount > 0 }"
value="#{AuditController.lazyDataModel}"
var="event" paginator="true"
paginatorTemplate=" {FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown}"
rowsPerPageTemplate="25,50,100" lazy="true"
dynamic="false"
rows="25"
loadingMessage="#{msgs.lsd_loading}">
<p:column width="300" overflow-x="visible">
<f:facet name="header">
<h:outputText
value="#{msgs.lsd_audit_details}" style="width:500; overflow-x:visible"/>
</f:facet>
<h:outputText
value="#{event.eventDetails}"></h:outputText>
</p:column>
但它像图像一样呈现,长行被单元格边框切割。
我应该如何将正确的溢出标签添加到显示所有数据的表行?