All Questions
32 questions
0
votes
1
answer
665
views
Oracle APEX, Column populating t1001 on add row when it is both master column and primary key in detail grid
I have a Master-detail grid
Master primary key - empid
Detail primary key - empid, deptid
When I add a new row in detail IG, the empid is populating with t1001 instead of the master grid's empid value....
-1
votes
1
answer
125
views
How to pass value dynamically in JavaScript
I have a table which has the column name "12" Instead of that value I want to pass it dynamically and for that I have a created item "P_Itm_val" see attached image for reference.
$(...
2
votes
1
answer
932
views
How to reset list to blank using javascript in Oracle apex
I have a select list component in Oracle apex and one button
Select list drop down as below values I can choose any one
-
A
B
C
On button click I have written a java script
if $('#P1_DROPDOWN').val()...
0
votes
1
answer
596
views
Show/Hide Post Text Item Oracle APEX
I have a Post Text Item at the end of my text fields.
When I click on it, it shows a PopUp, that retrieves a key to insert in one of my tables. It is possible that after I close the PopUp, the Post ...
-1
votes
1
answer
412
views
APEX countdown timer between dates
I'm trying to display the countdown timer between an enddate/time column and the system date/time column using below code. It's not displaying the timer.
I have created a page item P3_TIMER and it has ...
0
votes
1
answer
2k
views
Oracle APEX Close Modal Page with Javascript After 3 Seconds
I use in Dynamic Action Javascript to close my current modal page like this:
apex.navigation.dialog.close(true)
Is it possible to close my current modal page after 3 seconds? Because i want first to ...
0
votes
1
answer
8k
views
Oracle APEX Warning Message
I want to create warning message exactly as success.
APEX has the default success message:
apex.message.showPageSuccess('OK');
So, instead of this success message, i want to create a warning message ...
2
votes
1
answer
5k
views
How can I dynamically control a Region Display Selector in Oracle APEX?
I'm hoping to select a particular Region to highlight on the page load based on the link the user follows to get to that page. This is a drill-down report with multiple options, so the goal is to have ...
0
votes
0
answers
182
views
Oracle APEX: How can i take the value from a column in my page
I have a page and i want to show a success message using the value from a column of this page!
How can i do this?
I try with
apex.message.showPageSuccess(“The Client” + apex.column “LAST_NAME”....
2
votes
0
answers
882
views
Oracle APEX - Donut chart with Dynamic value on the middle
I am trying to create a Donut chart with the total value on the middle, and it worked fine by using the code below on Attributes > JavaScript Initialization Code together with a variable defined by ...
0
votes
2
answers
6k
views
add a javascript query dynamically change the button label in Oracle Apex
I have created a button named "Freeze".
I want to create a dynamic action that changes the name from "Freeze" to " "UnFreeze" on click.
I have set the static id for ...
0
votes
3
answers
9k
views
How to automatically refresh an interactive grid after clicking on save button or at a fixed interval?
I have an page item and an interactive grid on an apex page . Page item is of select list type and base on the selection the data in the grid changes. I have default Add row button in the grid to add ...
0
votes
1
answer
428
views
Check for status updates using APEX.SERVER.PROCESS
Env: Oracle APEX v5.1.2 with Oracle 12c R2 DB
I have a report that is based off the following table columns in a table called MY_TASK:
TASK_ID (PK),
TASK,
TASK_STATUS (from TASK_CHECKER.task_status)
...
1
vote
1
answer
1k
views
Oracle Apex 19.1 - Dynamic Action on Button Click Sets Value on Screen Writes Null to Database
Apex 19.1
A Dynamic Action on a button on an interactive grid sets the status column of the selected rows to 1 when clicked.
This shows as a changed row (little blue triangle in the corner). On Save ...
1
vote
1
answer
808
views
Display alert message after inserting a row in table using on demand process in oracle apex
I have a procedure which is usually taking long time to execute. When this is executing, it insert a process log into a table.
For Example:
inserting row 1: Loading Data to Update...
//after some ...