Skip to Main Content

Java Development Tools

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!

Disable parent window when child window is opened

614392Oct 26 2009 — edited Oct 27 2009
Hi
I need to open a new pop-up window using javascript .i dont want to use predefined adf function such as dialog, _target,usewindow (as per req) .but i can able to open pop-up window but still parent window is active (not disable ) i am clicking parent window when child is open .

what i did that:

1) i used given fn on cmd button onclick event

<script type="text/javascript">
var popupWindow=null;
function popup(){
popupWindow = window.open('http://10.14.1.1:9002/a/b/c/d/payment/Settlement.jsp','abcd12','height=600,width=600,top=0,left=0,resizable');
popupWindow.focus()
}

</script>

give me good suggestion to solve this issue
This post has been answered by Sireesha Pinninti-Oracle on Oct 26 2009
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Nov 23 2009
Added on Oct 26 2009
6 comments
4,571 views