Re: Display two modal windows in one request

2008-11-24 Thread Martin Sachs

Hi,

we have had the same issue. We are solving this Problem with a little
workaround in the Wicket-Source. 

We also created a ticket with our solution for this problem. 

https://issues.apache.org/jira/browse/WICKET-1771

The problem was, that the close would be excecuted in Javascript with a
timeout and the create doent do the timeout. So if you close and create a
modalwindow you would ever create and close the window. 

Martin S.



Newgro wrote:
 
 Hi *,
 
 i'm facing a problem i couldn't solve until now. Our base page contain an
 modal error window which is used to present the occurred error.
 
 Now i added a password request modal window on a page. If an error
 occurred after clicking the request button i would like to display the
 error window over the request window. If i click the close button on error
 window this should disappear but the request window should stay.
 
 But the error window disappears immidiatly ( 1sec). The request window
 stays. After i clicked the request button again the request window gets
 closed.
 
 Is there a solution for that issue? I've tried the example (multiple
 windows) but there are used pages and cookies for displaying (it seems to
 be to heavy for me).
 
 thanks 4 help
 Per
 

-- 
View this message in context: 
http://www.nabble.com/Display-two-modal-windows-in-one-request-tp20600479p20661354.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Display two modal windows in one request

2008-11-24 Thread Per Newgro
On Monday 24 November 2008 15:20:11 Martin Sachs wrote:
 Hi,

 we have had the same issue. We are solving this Problem with a little
 workaround in the Wicket-Source.

 We also created a ticket with our solution for this problem.

 https://issues.apache.org/jira/browse/WICKET-1771

 The problem was, that the close would be excecuted in Javascript with a
 timeout and the create doent do the timeout. So if you close and create a
 modalwindow you would ever create and close the window.

 Martin S.
Thank you Martin,

i'll give it a try.

Cheers
Per