Wicket Stuff Core 1.4.1 Release[ing]

2009-08-30 Thread Jeremy Thomerson
I successfully built Wicket Stuff Core 1.4.1 today. It is in the (very very slow) process of doing a release:perform (currently uploading all of the necessary files to wicketstuff repo). Hopefully by the time you read this, your project will be available as 1.4.1. Here are a couple that seem to h

Re: How to tackle Ajax "Flooding"

2009-08-30 Thread Igor Vaynberg
you can use an ajax call decorator to disable the button via javascript when it is clicked. -igor On Sun, Aug 30, 2009 at 2:55 PM, Tom Wollert wrote: > Hello there, > > I have a problem with my Wicket Application, which is quite Ajax heavy. > Certain ajax calls take some time as they start an imp

How to tackle Ajax "Flooding"

2009-08-30 Thread Tom Wollert
Hello there, I have a problem with my Wicket Application, which is quite Ajax heavy. Certain ajax calls take some time as they start an import, however the button can still be clicked and sends another ajax call (which is delayed for quite some time). Is it possible to disable the button while the

Re: Sign In and returning page

2009-08-30 Thread uud ashr
Forget everything I say :-D and look code below: For example: *SomePage:* add(new Link("signInLink") { void onClick() { redirectToInterceptPage(new SignInPage()); } }); *SignInPage:* add(new SignInForm("signInForm") { void onSubmit() { ... continueToOriginalPa

Re: WicketFilter

2009-08-30 Thread Uwe Schäfer
Igor Vaynberg schrieb: even though it is session specific it still sets application threadlocal. does not work, and does not look like it would: public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException { HttpServletReques

Re: WicketFilter

2009-08-30 Thread Igor Vaynberg
even though it is session specific it still sets application threadlocal. -igor 2009/8/30 Uwe Schäfer : >> Igor Vaynberg schrieb: > >>> map WicketSessionFilter in front of those servlets, you will get both >>> Session.get() and Session.get().getApplication(), and >>> Application.get() > > actuall

Re: WicketFilter

2009-08-30 Thread Uwe Schäfer
Igor Vaynberg schrieb: map WicketSessionFilter in front of those servlets, you will get both Session.get() and Session.get().getApplication(), and Application.get() actually, (as the name implies), this is quite session centric. my current use case is web services where i don´t have a sessio

Re: Sign In and returning page

2009-08-30 Thread Major Péter
Hi, Solution 1.: you could try throw new RestartResponseAtInterceptPageException(new SignInPage()), maybe it's working without session (I guess it won't) Solution 2.: You could create a constructor which will accept a Page as a parameter, so you can do such thing: throw new RestartResponseEx

Sign In and returning page

2009-08-30 Thread uud ashr
Hi all, Need help here, another wicket question. The case is I have User Panel on all pages in my website. User Panel contains SignIn link (if user not logged in yet), SignOut link and label of the logged user (if the user has logged in). Solution 1. On SignIn link, I'm using redirectToInterceptP

Re: requestParameters and %20

2009-08-30 Thread James Carman
Why would they need to write something for it when there is something in the Java language for it? On Sun, Aug 30, 2009 at 12:43 AM, Fernando Wermus wrote: > I thought that wicket may have some class for this situation isnt true? > > On Sat, Aug 29, 2009 at 10:45 PM, James Carman < > jcar...

Re: WicketFilter

2009-08-30 Thread Uwe Schäfer
Igor Vaynberg schrieb: map WicketSessionFilter in front of those servlets, you will get both Session.get() and Session.get().getApplication(), and Application.get() awesome. i was not aware of this. thanks Igor. cu uwe - To u