带有 id("myButtonId2") 的命令按钮可以正常工作。我的意思是它会更新“myOutputPanel”,但数据表内的命令按钮不会更新 outputPanel。数据表是否有特定的更新样式?
<h:form id="myForm" prependId="false">
<p:panel id="myPanel">
<p:dataTable id="myDatatable">
<p:column style="width:4%">
<p:commandButton id="myButtonId" update="myOutputPanel"/>
</p:column>
</p:dataTable>
<p:commandButton id="myButtonId2" update="myOutputPanel"/>
</p:panel>
<p:outputPanel id="myOutputPanel">
//some stuff
</p:outputPanel>