Dear All,
I have embedded a jar file in my web fusion project . The jar file contains a class called UtilsJar.java and in my my web fusion project I have a manage bean which is called ManageBeanA and it extends UtilsJar.java. I can access all the methods of UtilsJar.java from ManageBeanA.java class. Since ManageBeanA extends UtilsJar.java, I would expect that in my jsff file I can access any methods from UtilsJar.java, but it is not the case.
When I add the button below in my jsff file, the methods defined in UtilsJar.java that is ShowSavePopup and btnSave cannot be found in my jsff file:
<af:button disabled="#{!bindings.Commit.enabled}
icon="#{resource['images:Save.png']}" id="b11" text="#{res.SAVE}"
actionListener="#{ManageBeanA.ShowSavePopup}" binding="#{ManageBeanA.btnSave}"/>
Please note that ManageBeanA is defined as request scope in my taskflow.
Any idea why I am not able to access those methods from UtilsJar.java please?
I am using Jdeveloper 12.1.3..0.0
Thanks im advance for any help.