Re: redirectToInterceptPage,continueToOriginalDestination and cookies

2013-11-03 Thread Serban.Balamaci
Hi, Don't know about a "best" practice but what comes to me is to implement continue... yourself: static void continueToOriginalDestination() { InterceptData data = InterceptData.get(); if (data != null) { data

Re: Component detecting Ajax update

2013-11-03 Thread Martin Funk
traveling down the implementations of AjaxRequestTarget.add AjaxRequestHandler public void add(Component... components) one comes across to: AbstractAjaxResponse.add((final Component component, final String markupId) I don't see code that signals the Component that it was added to an AjaxRequ

Re: AjaxButton submit issue in GAE

2013-11-03 Thread Martin Funk
How about some code? And if it is deployed on GAE you even might be able to provide an url to the app. mf Am 03.11.2013 um 03:16 schrieb luiss184 : > Hi, > > I have an issue in my application with an AjaxButton which submits properly > only the first time. > To get it working again is necessa

Re: Installing Wicket application on a VPS server - How?!

2013-11-03 Thread David Beer
Hi Martino How is your WAR file produced is it via Maven or ANT, generally a WAR file is produced to a standard way. Can you deploy your application to a local instance of glassfish? Check the logs of the glassfish container, it should tell you if there was an error deploying the application. You

Re: Blogging platform written in Wicket?

2013-11-03 Thread Ondrej Zizka
Sounds good. Opening the source is always a good idea :) Let me know when you decide. This looks like a forum. Is there some blog running on it? Thanks, Ondra On 30.10.2013 16:16, Decebal Suiu wrote: Hi I have a platform for you (I created with other two friends, some time ago.) :) I like

Re: Component detecting Ajax update

2013-11-03 Thread Martin Grigorov
Hi, You can use org.apache.wicket.ajax.AjaxRequestTarget.IListener#onBeforeRespond(Map map, AjaxRequestTarget) to be notified before ART starts preparing its XML response. The 'map' contains all already added components. On Fri, Nov 1, 2013 at 3:45 PM, Nick Pratt wrote: > Is there a way for a

Re: redirectToInterceptPage,continueToOriginalDestination and cookies

2013-11-03 Thread Martin Grigorov
Hi, Please create a quickstart application and attach it to a ticket in Jira. We should improve this. On Fri, Nov 1, 2013 at 1:11 PM, wen zhang wrote: > Hi, > In the JavaDoc of Component.html#redirectToInterceptPage, it says > "Redirects > browser to an intermediate page such as a sign-in page