Hi all,
i have a scenario, i have a page (Page no: 1) consists of a button (see the below code) while clicking on a button it will re-direct to another page (Page no: 2), i have close button on page 2 which will help to re-direct Page 1.
where actual problem is, i do some insert operations over page 2, while i am getting back to page 1 my region/page has to refresh and display updated data from data base based on changes done in page 2.
Note : Page 2 has not created as Model dialogue, created as a normal page.
i used apex.navigation.redirect to redirect from page 2 to page 1 but it is just displaying but not refreshing.
please help me how to refresh my region/window.
below code is used to create a Button :
apex.navigation.dialog(url, {
title: 'Page 2',
height: '800',
width: '1460',
maxWidth:'1460',
maxHeight: '800',
modal:true,
resizable:true },
'a-Dialog--uiDialog',
$('#body'))
Thanks,
Sai Sandeep.