I have two regions on the page with the same title, so I cannot use APEX hide region dynamic action and forced to use javascript.
Both regions are part of Region display selector.
I gave each region different static ID - Region`` and
Region2`.
I am hiding a second region and displaying the first one using javascript dynamic action:
$("#Region2").hide();
$("#Region1").show();
The thing is, both regions are still accessible via Region Display Selector. How can I hide one of the regions from the display selector?