更新</p:datatable>后,<p:datatable>列大小混乱

时间:2013-10-31 11:29:35

标签: jsf primefaces datatable width

我正在使用Primefaces 4.0和JSF 2.1。当我从我的<p:commandButton>触发搜索操作时,表格中填充了正确的数据,一切都很好,只有列宽度混乱。

更新前: enter image description here

更新后: enter image description here

<p:commandButton>代码:

<p:commandButton id="searcher" value="Rechercher"  action="#{examenListBean.search}"  update="tabexam"/>

<p:dataTable>代码:

<p:dataTable id="tabexam"
                             paginatorPosition="bottom"
                             var="exam"
                             value="#{examenListBean.listexam}"
                             widgetVar="examTable"
                             emptyMessage="aucun résultat trouvé pour votre recherche"
                             filteredValue="#{examenListBean.filteredexams}"
                             paginator="true"
                             rows="30" 
                             paginatorTemplate="{CurrentPageReport} {FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown}"  
                             rowsPerPageTemplate="5,10,15,30"
                             resizableColumns="true">

1 个答案:

答案 0 :(得分:0)

我删除了resizableColumns="true"并解决了问题。