我正在使用Seam 2.3,我想将方法操作调用到h:commandButton中。当我点击我可以看到一个选择查询到控制台但我的方法永远不会调用。
<h:form id="form">
<rich:panel id="panelInfoModif" rendered="#{ClassAction.beanSelected()}">
...
<h:commandButton value="Submit" action="#{ClassAction.submit()}" >
<a:ajax execute="@this"></a:ajax>
</h:commandButton>
</rich:panel>
</h:form>