ADF Popup Dialog Not Showing Working
I'm using JDeveloper 10.1.3 and ADF. I have been unable to get a dialog popup working. When I click on a commandLink in the Originating page, it only refreshes the Originating page and does not open the destination page at all. It's happening in both FF and IE.
Within the faces-config.xml I created a navigational rule with outcome that begins with dialog.
Extracted sample from faces-config.xml:
*<navigation-rule>*
*<from-view-id>/Originate.jspx</from-view-id>*
*<navigation-case>*
*<from-outcome>dialog:dest</from-outcome>*
*<to-view-id>/Destination.jspx</to-view-id>*
*</navigation-case>*
*</navigation-rule>*
The commandLink action attribute begins with dialog: and useWindow attribute is true.
Extracted sample from JSP document:
*<af:commandLink text="Go to Destination" action="'dialog:dest'"*
useWindow="true" windowHeight="250" windowWidth="300"
partialSubmit="true" id="originate"/>
Is there something I'm doing wrong? Any help would be greatly appreciated.
Thanks.