0

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

更新前: 在此处输入图像描述

更新后: 在此处输入图像描述

<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">
4

1 回答 1

0

我删除了resizableColumns="true"它,它解决了这个问题。

于 2013-11-01T15:49:30.747 回答