Hi All,
SE 12.1
APEX 4.2
Ive a page with a region display selector. and a piece of code that hides the 'Show All' tab on page load.. i.e.
$('.apex-rds li:first-child').remove();
$('.apex-rds li:first-child').addClass('apex-rds-first');
$('.apex-rds li:first-child > a').trigger('click');
I have a region that submits a form. When submitted, I want the page to reload back onto the selected region that it was on when submited, rather than back to the first.
I'm assuming I will have to capture the current selected region onto a page item, then when submitted and reloaded, modify the above code somehow to re-select my previously selected region.. Not quite sure how to do it however, if anyone has any hints, Id be grateful.
Kind Regards
Richard