我正在使用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">
答案 0 :(得分:0)
我删除了resizableColumns="true"
并解决了问题。