Primefaces dataTable paginator header不调整

时间:2012-01-13 05:44:26

标签: java css3 jsf-2 datatable primefaces

在尝试调整primefaces dataTable的分辨率时,paginator标头存在一些问题。我怎么排序呢?我的屏幕截图如下。一个完整的屏幕。enter image description here以及还原enter image description here

2 个答案:

答案 0 :(得分:1)

我解决了这个问题:

.ui-datatable-tablewrapper {
  overflow-x: auto;
}

这个固定的分页页眉和页脚,只在数据单元格上滚动。

答案 1 :(得分:0)

问题已经讨论herehere

通过将表设置为fixed并调整表中的自动换行,我得到了合理的结果:

.ui-datatable thead th {
   white-space: normal;
   word-wrap: break-word;
}
.ui-datatable table {
   table-layout:fixed
}

width行设置p:column属性。