Reputation: 1
I am working on Oracle Apex. I have a doubt. how can we give default values to interactive grid column from apex items. Below i provided sample layout of my application.
Upvotes: 0
Views: 6033
Reputation: 18630
I did a quick test on the EMP table.
SELECT * FROM emp
. For a more complex business case you probably need a computation or page process to set the default value, but this example shows the most simple case.
Upvotes: 2