我想知道是否可以使用a4j:commandLink
组件的execute属性来使用表单id提交表单。这是我的代码:
<h:form id="myForm">
// fields and values and stuff.....
</h:form>
<a4j:region>
<a4j:commandLink execute="myForm" id="myLink" value="Click Here" render="someComponent" actionListener="#{myBean.myAction}"/>
</a4j:region>
如果这不可行,请建议我实现此目的的其他方法。