I have page 1 from which I open a modal dialog page - page 2. Now when I close the modal dialog, I want to be redirected to page 3. On page 2 I have a button that has a dynamic action defined where on button click two actions take pace: Page Submit (with an after submit branch out to page 3) and Close dialog. Once I click on the button, dialog closes but the user stays on page 1, not going to page 3.
相关问题
- Oracle Forms Vs APEX [closed]
- Making a custom authentication based on 2 differen
- Oracle apex 5.1 calling interact grid inside modal
- Parse JSON object to use in Apex item select list
- Closes matching address (Google maps) APEX procedu
相关文章
- Problem in firefox when calling window.open
- Current version of data in database has changed si
- Dynamic Chart Regions in Oracle Apex
- How to Access APEX_ITEM.TEXTAREA Field Using APEX_
- Applying a phone number format mask in oracle apex
- Eclipse cannot connect oracle 10g XE on windows 7
- Oracle Apex 18.1 Interactive Grid (IG) Setting fil
- Open modal dialog through JavaScript Oracle APEX
If you have branch, you don't need to close dialog..
Another option is to travel through pages using PL/SQL-JS combination that redirects to URL after running code on server.
add a dynamic action onClick for that button, with two true actions:
a. Execute PL/SQL code, submit P2_Item, return P2_TARGET
b. Execute Javascript code:
and that's supposed to do the trick