Hello APEX Community,
I'm encountering an issue with a dynamic action in my Oracle APEX application. I have created multiple dynamic actions for showing and hiding 2 page items simultaneously. Since I'm using using dynamic action to set value in page item and then using other dynamic actions to set value in other page items based on values set in first dynamic actions, and then hide and show page items.
To avoid delays I have avoided using server side condition ,since sometime it works and and sometime it won't. That's why using multiple dynamic actions
Dynamic actions:
-
selection change (on IG) and setting values in session state.
-
when value of page item count = 1, set certain values in business page item base on value in table based on conditions(value of count page item is set in above dynamic action).
-
When value of page item count > 1, set value in business page item = ‘Empty’
-
When count = 1 and business = ‘a’ => show page item 1
-
When count = 1 and business != ‘a’ => show page item 2
-
When count > 1 => show page item 2