JSF2とrichfacesの使用4。
フォームに複数のリージョンを持つ2つのリージョンがあります。別のリージョンのrenderを呼び出したい。どうすればいいですか?
<h:form>
<a4j:region id="rg_1">
<h:inputText id="field1" value="#{bean.field1}"/>
</a4j:region>
<a4j:region id="rg_2">
<a4j:commandLink action="#{mybean.resetBean} render="region1" />
</a4j:region>
</h:form>