ajax呼び出しを実行するのと同じボタンをレンダリングしたい
<p:commandButton id="load"
actionListener="#{bean.Valid}"
rendered="#{bean.renderButton}"
value="Load Object"
ajax="true"
update="load,group,ip1">
</p:commandButton>
p:commanButton update と Bean の RequestContext.getCurrentInstance() を介してそれを実行しようとしましたが、どちらも機能していません
RequestContext requestContext = RequestContext.getCurrentInstance();
requestContext.update("mainForm:load");
私がここで見逃しているアドバイスはありますか?
ありがとう