Click here to Skip to main content
15,891,607 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have an aspx page with a button on button click I am opening an Ext window with modal=false. When I am clicking outside the window it disappears and I don't want to prevent the user to click outside it I just don't want it to hide.
Posted
Updated 7-Jan-15 0:12am
v2
Comments
Praveen Kumar Upadhyay 7-Jan-15 6:15am    
Then rather using Modal, use another window.
Window.Open();
Bob712 7-Jan-15 6:45am    
window.open() opens a new window as response.redirect but I am dealing with Ext.net windows
Praveen Kumar Upadhyay 7-Jan-15 6:51am    
But you want user to interact with the parent screen while child page(or modal) is open. So window.Open will be a good solution for you I guess.
Afzaal Ahmad Zeeshan 7-Jan-15 7:00am    
You must be using the (third-party) framework to create these windows, did you try to read their API documentation to understand this feature, how to do it?

1 solution

I used
C#
windowID.Render(this.Form)
in code behind it works
 
Share this answer
 

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