I'm using Seam 2.3 and i want to call a method action into a h:commandButton. When i click i can see a select query into the console but my method is never call.
<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>