我有一个会话托管 Bean,其中有一个显示在数据表中的列表,当我单击按钮时,我更改了托管 bean 中的列表,但 JSF 页面中的表没有更改:
<p:commandButton id="someId" value="Button" action="#{gestionduplanning.exec2()}">
<f:ajax render="koka"/>
</p:commandButton>
<p:dataTable id="koka" var="op" value="#{gestionduplanning.listop}" style="width: 700px;float: left;">
<p:column headerText ="operateur" style="width:50px;" >
<h:outputText value="#{op.operateur.matricule}"/>
</p:column>
</p:dataTable>
如何更新 JSF 中的表并且需要将托管 bean 保留为会话 bean?