Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

set the page zero item value to null using javascript

orton607Feb 16 2011 — edited Feb 17 2011
hello,

Can anyone please help me out with this issue. I have a filter item name P0_ISSUE in an interactive report. In this report, I have a Insert New button when clicked opens up a new popup window where the user enters the data and clicks the button CREATE at this point I call a javascript function to show an alert message/close popup window/refresh parent window and also process the pl/sql insert process. Below is the javascript function code.
function saveChanges()
{
doSubmit('CREATE');
alert('Successfully inserted the record. Click OK to close popup window and  \n to refresh the parent window.');
window.close();//close the popup window
window.opener.doSubmit('REFRESH');
//call doSubmit function on the parent window to cause the page to refresh.
}
My issue is that i want to set the page zero item value to null P0_ISSUE before refreshing the parent window within the javascript function mentioned above. can anyone please suggest me any possible approach.

thanks,
orton
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 17 2011
Added on Feb 16 2011
3 comments
612 views