i try to fix unmanagable code like this:
<a4j:commandButton action="dia_ok" actionListener="#{...}" ajaxSingle="true" .../>
i fix it by bind the button to an ManagedBean and swap all the attributes to Java-Code, so ill only have:
<a4j:commandButton binding="#{...}"/>
I successfully coded setAjaxSingle(true) and the actionListener-attribute, but i fail on code the action-Attribute.
My question is: how can i specify the action-outcome whereat the method button.setActionExpression() does only allows argument of MethodExpression instead of String?