Jdev 11.1.1.7
In my code, i have a commnad button in jsff file which is a part of bounded taskflow.
Initially, the action method (which was tied to method in backing bean and returning String to navigate) was not getting called, so i checked with actionListener but even that is not getting called.
<af:commandButton text="Submit2" id="cb12"
actionListener="#{pageFlowScope.aimsBean.testDeleteIt}"
inlineStyle="font-size:small;">
</af:commandButton>
I tried even
<af:commandButton text="Submit2" id="cb12"
action="navigate"
inlineStyle="font-size:small;">
</af:commandButton>
but button is not working at all.
Please advise