I was using Richfaces version 4, I have a command control in XHTML like this:
<a4j:commandButton action="#{MyBean.doGo}" value="#{msg.Label_Go}" render="tablePanel" execute="@form" id="Go" immediate="true"/>
And a bean class:
@ManagedBean(name="MyBean")
@SessionScoped
public class MyBean {
public void doGo() {
...
}
}
Anyhow, the doGo()
doesn't work at all, meaning that it doesn't get call. May I know how this could be resolved?