Click here to Skip to main content
15,895,084 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Core Asp open frame less popup but parent window should be enable

just like gmail chat


I have tried this
HTML
<html>
<head>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/redmond/jquery-ui.css" rel="stylesheet" type="text/css"/>
  <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
  <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script>
  function displayResult(id)
  {

       $("#dialog").dialog({modal: true, height: 590, width: 1005 });

    }
</script>
</head>

<body>
<div id="mydiv"  önclick="displayResult('<%= RS("uid") %>')"> 
abcd
</div>
<div id="dialog" style="display:none;">
	This is test
   </div>
</body>
</html>


But this make parent form disabled while open popup, I want that parent window enable
please help
Posted

1 solution

Sounds like you need a new window and not a modal dialog. Try:
JavaScript
$("#dialog").dialog({modal: false, height: 590, width: 1005 });

Modified the 'modal' proerty from true to false.
Details here: http://api.jqueryui.com/dialog/#option-modal[^]
 
Share this answer
 
v2
Comments
Aarti Meswania 16-Jan-13 8:55am    
oops! It was just a small change.
it worked thank you! :)
Sandeep Mewara 16-Jan-13 9:11am    
Welcome. :)

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900