Re: load page in Wicket and message from web browser

2012-08-09 Thread vaibhav2012
Hi areq10, I tried to recreate your scenario and i came across the same situation you are facing. One query from you : Have you specified WindowClosedCallback for your modalWindow??? If not Specify that using this piece of code : modalWindow.setWindowClosedCallback(new

Re: load page in Wicket and message from web browser

2012-08-08 Thread vaibhav2012
Hi, I never came across such a scenario. Can you show the exact piece of code you are using, i can try to figure out by looking at it. - Regards, Vaibhav Gupta -- View this message in context:

Re: AW: How to reload a Wicket-page from Wicket-panel.

2012-06-20 Thread vaibhav2012
Hi Hans, I have already tried this, but it doesn't work. SignInPanel is a seperate class which extends *org.apache.wicket.markup.html.panel.Panel*, and it is having its seperate markup. I am adding this SignInPanel as a Component in different wicket pages, as mentioned in the scenario in my

Re: How to reload a Wicket-page from Wicket-panel.

2012-06-20 Thread vaibhav2012
Hi Hans, Thanks for the information. Its working :). - Regards, Vaibhav Gupta -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/How-to-reload-a-Wicket-page-from-Wicket-panel-tp4650097p4650103.html Sent from the Users forum mailing list archive at Nabble.com.

How to reload a Wicket-page from Wicket-panel.

2012-06-19 Thread vaibhav2012
Hi, I want to reload Wicket-page from a Wicket-panel. The scenario is like : 1) I have a SignInPanel. I am adding this panel in different pages, lets for example say PageA, PageB, PageC etc. 2) Now when user is in PageA, and user signs in from SignInPanel. I want the contents of PageA to

PageExpiredErrorPage not working.

2012-06-13 Thread vaibhav2012
Hi all, I am trying to server a particular error page when session timeouts to my users. For this i configured the error page on my Application's init method. But this thing is not working. *One of my concern :* Does wicket server this PageExpiredErrorPage only in case of PageExpiredException??

Re: PageExpiredErrorPage not working.

2012-06-13 Thread vaibhav2012
Hi Martin, I called the function as u said. But, still no success. On session timeout wicket logs following lines: [ContainerBackgroundProcessor[StandardEngine[Catalina]]] DEBUG o.a.wicket.session.HttpSessionStore - Session unbound: 831D6D49C220E621761EC98C3B8943B6

Re: PageExpiredErrorPage not working.

2012-06-13 Thread vaibhav2012
Hi Martin, Thanks for clearing my doubt. But after session timeout, when i try to access any mounted page i am not getting PageExpiredException. I have bypassed the error page in my authorization strategy, and i dont feel security settings are blocking this. Please give some info. -

Re: PageExpiredErrorPage not working.

2012-06-13 Thread vaibhav2012
Hi, I will try to create a quick start for this and will post soon. - Regards, Vaibhav Gupta -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/PageExpiredErrorPage-not-working-tp4649905p4649918.html Sent from the Users forum mailing list archive at Nabble.com.

Re: PageExpiredErrorPage not working.

2012-06-13 Thread vaibhav2012
Hi Martin, Thanks alot :). That worked. Just lil bit curious : I didn't see any PageExpiredException in the logs now also. Why is that? - Regards, Vaibhav Gupta -- View this message in context:

Re: wicketAjaxGet is not defined javascript error }

2012-06-12 Thread vaibhav2012
I was able to resolve it. Actually javascript was getting loaded because of my security settings. I bypassed the security settings for javascripts and it worked :) -- View this message in context:

wicketAjaxGet is not defined javascript error }

2012-06-12 Thread vaibhav2012
Hi, I am new to apache wicket. I have added an ajaxLink to my wicket page. But i am not able to capture the onClick event of this link. The problem is coming because of JS error wicketAjaxGet is not defined as monitored from firebug. Please help me where i am getting wrong. I am attaching the