is it possible two modalbox in html page
-
Hi, I am using following code for modalbox. window.showModalDialog but i want handle two modal boxes at a time. I want know is it possible two modalbox for a HTML page, IE6.0. If yes how to handle them. Thanks in advance.
-
Hi, I am using following code for modalbox. window.showModalDialog but i want handle two modal boxes at a time. I want know is it possible two modalbox for a HTML page, IE6.0. If yes how to handle them. Thanks in advance.
I doubt it. The idea of a modal dialog is to force the user to interact with that dialog and prevent interaction with any other component or window until the modal is closed. You may need to ask why you want to show 2 modals simultaneously and find a more useable alternative. Maybe make the modal window follow a wizard model.
Mark's blog: developMENTALmadness.blogspot.com
-
I doubt it. The idea of a modal dialog is to force the user to interact with that dialog and prevent interaction with any other component or window until the modal is closed. You may need to ask why you want to show 2 modals simultaneously and find a more useable alternative. Maybe make the modal window follow a wizard model.
Mark's blog: developMENTALmadness.blogspot.com
-
Hi, I am using following code for modalbox. window.showModalDialog but i want handle two modal boxes at a time. I want know is it possible two modalbox for a HTML page, IE6.0. If yes how to handle them. Thanks in advance.
One modal dialog is one modal dialog too many. What do you think two would be? ...ask yourself this: have you ever been browsing the web and stopped to think, "Hey, this is all just too easy - what i need right now is at least one dialog box that prevents me from navigating until i make it go away!"
-
Hi, I am using following code for modalbox. window.showModalDialog but i want handle two modal boxes at a time. I want know is it possible two modalbox for a HTML page, IE6.0. If yes how to handle them. Thanks in advance.
absprogrammer wrote:
but i want handle two modal boxes at a time.
Weird. The user has to dispose a modal dialog to proceed with any operation. Two concurrent modal dialogs would be a wild goose chase or impossible.
Vasudevan Deepak Kumar Personal Homepage
Tech Gossips
A pessimist sees only the dark side of the clouds, and mopes; a philosopher sees both sides, and shrugs; an optimist doesn't see the clouds at all - he's walking on them. --Leonard Louis Levinson -
absprogrammer wrote:
but i want handle two modal boxes at a time.
Weird. The user has to dispose a modal dialog to proceed with any operation. Two concurrent modal dialogs would be a wild goose chase or impossible.
Vasudevan Deepak Kumar Personal Homepage
Tech Gossips
A pessimist sees only the dark side of the clouds, and mopes; a philosopher sees both sides, and shrugs; an optimist doesn't see the clouds at all - he's walking on them. --Leonard Louis LevinsonHi, Thanks for replying. my issue is I am working on web application in which i'm showing a pop up dialog as modal box. but when application is ideal for some time a lockscreen modal dialog appears. Thus I cannot access html page but i can access popup modal box which should not happen. lock screen is also a modalbox. So i want to handle two modalbox. please suggest if any alternative for this. Thnaks in advance.