我正在使用 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">