id("myButtonId2") の Commandbutton は正常に動作します。つまり、「myOutputPanel」を更新しますが、datatable 内にある commandbutton は 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>