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 に答える