私は 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">