Hi,
I have two apex pages. I open a child page using javascript from the parent page.
Parent window has following items . P1_Text1, P1_text2, P1_text3 . The setting is 'Change only when session state is Null', Static assignment.
In the child window : I have two buttons 'Confirm' and 'Close'.
When I press Confirm button, It sets the value of a parent page item in a PL/SQL process.
BEGIN
/* some calculations
followed by one assignment statement */
:P1_Text1:=final_value;
END;
'Close' button in the child window. has following javascript associated with it :
javascript:
window.opener.location.href =window.opener.location.href;
window.close();
When I press close button, the parent window gets refreshed and P1_Text1 is loaded as per the requirement. Everything is fine till here.
But the issue is with other page items in the parent page. They become null.
How to retain the values of page items of parent window ?
Regards,
Archana