私はこのようなことを試しました:
<p:commandButton type="push" value="Ack" disabled="false"
oncomplete="bean.method2()" update=":form:alarmTable"
action="#{bean.method1()}"
ただし、method2 は呼び出されません。それ以外の場合:
<p:commandButton type="push" value="Ack" disabled="false"
oncomplete="alert('onComplete')" update=":form:alarmTable"
action="#{bean.method1()}"
期待どおりに動作します。
次の一連のアクションを実装したいと思います: method1 - update - method2。それをどうする?