Click here to Skip to main content
Licence CPOL
First Posted 24 Apr 2009
Views 15,670
Downloads 152
Bookmarked 17 times

Disable Parent Window

By | 24 Apr 2009 | Article
To give disabled effect to parent window

Introduction

This article discusses how to give a disabled effect to the parent window on open of an alert or confirm dialog.

Using the Code

To keep it simple, in DisabledEffect project I have used simple HTML and JavaScript for changing the style of the div. This demo HTML clearly shows how div style changes can give a better feel to your user.

The screen shot given below shows the parent window in disabled mode.

screenshot.gif

The full source code is given below. The same code is included in the *.zip file also.

<html>
<head>
<title>Disabled Effect</title>
<script language="javascript">

function DisabledEffect()
{
    document.getElementById ('MainDiv').style.display='';
    document.getElementById ('MainDiv').style.visibility='visible';
    document.getElementById ('MainDiv').style.position='absolute';

    document.getElementById ('MainDiv').style.top='0px';
    document.getElementById ('MainDiv').style.left='0px';
    document.getElementById ('MainDiv').style.width= '100%';
    document.getElementById ('MainDiv').style.height= '100%';

    document.getElementById('MainDiv').style.backgroundColor = "Gray";
    document.getElementById('MainDiv').style.filter = "alpha(opacity=60)";
    document.getElementById('MainDiv').style.opacity = "0.6";

    alert("Parent window in disabled effect!!!");

    document.getElementById ('MainDiv').style.display='none';
    document.getElementById ('MainDiv').style.visibility='hidden';

    document.getElementById ('MainDiv').style.top='0px';
    document.getElementById ('MainDiv').style.left='0px';
    document.getElementById ('MainDiv').style.width= '0px';
    document.getElementById ('MainDiv').style.height= '0px';
}

</script>
</head>
<body>
<form id="frmMain" runat="server">
<div id="MainDiv"></div>

This is just some text <br /><br />

Test Textbox : <input type=text /> <br /><br /><br />

<input type=button value="Click Me" onclick="DisabledEffect()" />
</form>
</body>
</html>

History

  • 24th April, 2009: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

azamqadri



India India

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Questioncode not properly working PinmemberArchana9990:09 7 Mar '12  
Generalheight= '100%' not valid PinmemberPsyAfter5:28 3 May '09  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 24 Apr 2009
Article Copyright 2009 by azamqadri
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid