Hi,
I've a requirement that only if the two items (P3_ITEM1 and P3_ITEM2) are not null then the button should show.
When I create a dynamic action as below
Event => Key Release
Items => P3_ITEM1,P3_ITEM2
Condition => is not null
Show button with a false action as well. The sample is here https://apex.oracle.com/pls/apex/f?p=62495:3:
But in this case the condition is not working the way I want. If any of the item is not null the button is showing. If I give Javascript Expression as condition with $V("P3_ITEM1") != null && $V("P3_ITEM2") != null is also not working.
Can anyone help me with this.
Thank you.