我正在使用primefaces 3.5和primefaces扩展,我有一个数据表,当我把属性scrollable =“true”时,滚动正确地出现在我的表中但也出现在我的pe:layoutPane中,我希望能帮助我。感谢
我希望垂直滚动只显示在数据表中。
<p:dataTable id="dataTable" var="registro"
value="# {regManualGrupalController.regManualDataModel}"
selection="#{regManualGrupalController.regSeleccionados}"
emptyMessage="Asistencia(s) no encontrada(s)" style="width:1100px;margin:1%;height:320px"
widgetVar="alumnosTable" scrollable="true" scrollHeight="320">
<!-- -->
<f:facet name="header">
Asistencias Docentes
</f:facet>
<p:column selectionMode="multiple" style="width:18px">
</p:column>
值得注意的是,数据表中滚动的大小越大,但会增加滚动窗格的大小
答案 0 :(得分:0)
在id
添加<pe:layoutPane>
,并将overflow
css属性设置为hidden
。