aspose file tools
The moose likes HTML, CSS and JavaScript and the fly likes modal pop up not closing Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Engineering » HTML, CSS and JavaScript
Reply Bookmark "modal pop up not closing" Watch "modal pop up not closing" New topic
Author

modal pop up not closing

vinod khanna
Greenhorn

Joined: Jun 24, 2007
Posts: 1
Hi all thanks in advance,

I have a pop up window using window.ShowModalDialog(). The pop up should take details of the user and when 'Accept' button is pressed on this popUp window , Im supposed to put these values taken from the user into session and close the pop up window.

In the popUp JSP I wrote a javascript function when the user clicks the 'Accept' button, in that function i am doing doc.forms[0].submit=<action path>?parameter... etc
and then window.close(); in the same function, to close this pop Up.


when I use a normal pop up with window.open() it works, but with the window.ShowModalDialog(), it doesn't work it shows a javascript error.

Please help
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56204
    
  13

You do realize that showModalDialog is a proprietary IE functiom right? Your pages will not work with any other browser.

I imagine that you must also use a proprietary means to close the modal window once opened.


[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: modal pop up not closing
 
Similar Threads
How to submit a form like this, using struts?
Struts action triggered by onUnload event
close pop up window and redirect to parent window in struts2
Struts action triggered by onUnload event
Question on using showModalDialog