3
votes

Oracle APEX 18.1 : I got a shuttle in a modal page. If I want to get the value of this shuttle I normally go to the dev console of chrome and type e.g. $v("Px_SHUTTLE");

This all works fine within normal pages but when I implement a shuttle in a modal page I can't see the selected items from the shuttle with $v.

Is this normal or a bug ?

1

1 Answers

3
votes

The preferred method for this would be to use

apex.item("Px_SHUTTLE").getValue();

But your method should work too. I tried them both on Apex 5.1 and they work. I tried them also on 18.1 and they don't work. This appears to be a bug because it's not mentioned in the changelog of Apex 18.1.

Keep an eye out on the Known Issues to see if there is going to be a patch for it soon.