In Oracle Apex, on button click, you want to open URL in a new tab. Here I am giving the example to perform this task using the Dynamic Action for a button.
Open URL in a New Tab on Button Click in Oracle Apex
Step-1: Create a button and set the properties highlighted in the below image:
Step-2: Now right click on the button you created and select Create Dynamic Action option. Then define the properties as shown in the below image:
As you can see in the above image that Action is set to Execute JavaScript Code and in the Code section, the following JavaScript code is written to open an URL in a New Tab on click of a button in Oracle Apex.
javascript:window.open('f?p=&APP_ID.:2:&APP_SESSION.','_blank');
The above JavaScript code will open the Page number 2 in the same application into a new tab window. Now save the changes and test.
You can use any URL here to open it in the new tab.
See also:
- Oracle Apex – Refresh Report Region Using Dynamic Action
- Oracle Apex Dynamic Popup Navigation Menu Example
Yes right, this way also can be done.
oracle apex
how to open generated PDF/CSV file in New Browser Windows