7,168 questions
3 votes
1 answer
70 views
How to generate URL with path parameters instead of query string?
I’m working on Oracle APEX (v 23.1) with Friendly URL mode enabled. I want to generate a page URL where the value of a page item appears in the path, not in the query string. For example, this is the ...
-2 votes
0 answers
61 views
How to determine what is preventing page item selection? [closed]
I'm having an issue with a page item losing its value when navigating via page wizard. I have a page with 4 sequential inputs: p1_org, p1_vacancy, p1_candidate, p1_assignment. Each item after p1_org ...
1 vote
1 answer
41 views
Render page item which has HTML in Oracle Apex
I have an application where I need to display and stylize the heading of the region. So instead of display heading simply as "Car", I need to display "car icon Car". This icon and ...
2 votes
1 answer
49 views
CSS in a Help Text for a page item gets applied to other page items in Oracle APEX
I have defined the following Help Text for a drop down list on a page in oracle APEX : <html> <style> table, th, td { border:1px solid black; } </style> <body> <table ...
-1 votes
0 answers
59 views
How to restrict developer access to specific applications in the same workspace? [closed]
I have a workspace named DEV that contains two schemas: ADMIN and DEV_1. Inside this workspace, I also have two developer accounts: DEV_1 (developer) DEV_2 (developer) And I have two applications: ...
1 vote
1 answer
92 views
New oracle apex plugin firing on page load/initialization
I have creating my first simple plugin. The idea is to have button in a page, on clicking of which an interactive report region will be reset, instead of going through "Actions menu" of IR. ...
0 votes
1 answer
31 views
ORDS 25.2.1 behind Nginx/Tomcat – cookies appearing in page body
Environment: - ORDS 25.2 deployed on Tomcat 9.0 - Java 17 - Database and APEX on separate servers (PaaS) - Reverse proxy: Nginx Problem: After upgrading to ORDS 25.2.1, the APEX layout breaks. Some ...
0 votes
0 answers
23 views
set minimum date in APEX (date item being in IG)
I have an IG where there are 2 date fields, and I wanted the second datefield to have a minimum value of the first one+1 day, but only if the first datefield is in the next day, otherwise to have the ...
0 votes
1 answer
39 views
Change color of a chart in oracle apex if its a maximal value
I'm creating a bar chart in Oracle Apex 23ai and I need to change the color of bars from selected rows when they have the max value. My label is X_LABEL, value is Y_VALUE and X_VAL is used to sort the ...
0 votes
1 answer
71 views
processing after submit not working in oracle apex
I have a problem with executing the code after submitting. The case should be very simple, but I don't understand why it doesn't work. I have a form on the page 24: Default buttons: And default ...
0 votes
1 answer
63 views
Reset APEX User Password [closed]
I am trying to reset the password for my APEX user account. I tried executing and committing the following update: UPDATE wwv_flow_fnd_user SET account_locked = 'N' , web_password = 'newpass', ...
-4 votes
1 answer
119 views
how to trim, substring and make capital letters in a column [closed]
I have a table in oracle apex: CREATE TABLE Fundusze ( Id NUMBER(10) NOT NULL, Nazwa VARCHAR2(50) NOT NULL, Waluta VARCHAR2(50) NOT NULL, Typ VARCHAR2(50) NOT NULL, CONSTRAINT ...
0 votes
2 answers
89 views
Set an APEX Item upon page load depending on what Interactive Grid is displayed
I’m currently having trouble setting an item upon page load. It seems that the value is being stored only on the client side, not on the server side. While the current behavior works properly when ...
1 vote
1 answer
83 views
Encoding & as & in user input oracle apex
I am making form with user input form as you can see the image. Because of XSS, I am using Apex's own security option: Restricted characters : Blocklist &<>"/;,*|=% and -- Is there ...
0 votes
2 answers
128 views
Problem with setting focus after displaying a modal
I have an Oracle Apex application that has an input field and some buttons. The workflow is: User enters text, presses enter. The screen changes to a different "page" that does not have the ...