我在使用 PrimeFaces DataTable 时scrollable="true"
遇到了这个问题,列缩小并且列标题与列不对齐。我在StackOverflow上看到了很多关于同样问题的帖子,但无法得到解决方案,现在有没有人有解决方案???
<p:dataTable id="idDataTbl"
styleClass="lineItemDataTableQS hightLines" draggableColumns="false"
binding="#{<someBean>.<dataTable>}"
scrollable="true" scrollHeight="150"
rows="25" value="#{<someBean>.<dataModel>}"
rowSelectListener="#{<someBean>.<methodCall>}"
selectionMode="single"
var="lineItemData"
rowsPerPageTemplate="5,25"
rowIndexVar="lineRowIndex"
selection="#{quoteSummaryBackingBean.selectedlineItemRowsList}">
.
.
.
. <lot of columns.. about 31>
.
.
.
</p:dataTable>
我不能发布代码:(它在生产中我可能会遇到麻烦,这里是数据表标签的代码,并且有列。