Re: git commit: pull request #18 by berniegp, Cleanup devutils pages and panels

2012-08-16 Thread Martin Grigorov
Hi, This pull request removes InspectorBug class completely. Is it not needed anymore ? Bertrand's commit message is not very detailed ... :-/ On Fri, Aug 17, 2012 at 1:27 AM, wrote: > Updated Branches: > refs/heads/master 2c7f5c858 -> 0f1e4ac21 > > > pull request #18 by berniegp, Cleanup dev

wicket pull request: Cleanup devutils pages and panels

2012-08-16 Thread berniegp
GitHub user berniegp opened a pull request: https://github.com/apache/wicket/pull/18 Cleanup devutils pages and panels Cleanup for some devutils pages and panels. Mostly html and css You can merge this pull request into a Git repository by running: $ git pull https://github.co

wicket pull request: Cleanup devutils pages and panels

2012-08-16 Thread berniegp
GitHub user berniegp opened a pull request: https://github.com/apache/wicket/pull/18 Cleanup devutils pages and panels Cleanup for some devutils pages and panels. Mostly html and css You can merge this pull request into a Git repository by running: $ git pull https://github.co

Re: 6.x should getTarget() in ChainingModel (or PropertyModel) be made public instead of protected?

2012-08-16 Thread Sven Meier
Can't you just use #getChainedModel()? Sven Greg Johnson schrieb: >hi, > >for some validator use cases public getTarget() in AbstractPropertyModel was >important for access to the parent object, eg for cross field validation. > >this is now not possible in 6.x as getTarget() is now protected i

Re: Wicket 1.5 - duplicate JS detection broken?

2012-08-16 Thread Martin Grigorov
On Thu, Aug 16, 2012 at 6:26 PM, Jeremy Thomerson wrote: > I haven't had time to dig into this, but has anyone else seen where > duplicate JS detection is broken in 1.5.x? For instance, add this twice in > your page: > > add(new AbstractDefaultAjaxBehavior() { > @Override >

Wicket 1.5 - duplicate JS detection broken?

2012-08-16 Thread Jeremy Thomerson
I haven't had time to dig into this, but has anyone else seen where duplicate JS detection is broken in 1.5.x? For instance, add this twice in your page: add(new AbstractDefaultAjaxBehavior() { @Override protected void respond(AjaxRequestTarget target) { }

Re: Method getPostParameters always returns an empty result.

2012-08-16 Thread Andrea Del Bene
Sorry...forget my question. Hi, looking at the code of method getPostParameters of class Request it seems that it returns always an empty result. Is this an issue?

Method getPostParameters always returns an empty result.

2012-08-16 Thread Andrea Del Bene
Hi, looking at the code of method getPostParameters of class Request it seems that it returns always an empty result. Is this an issue?

Re: AllExceptFeedbackMessageFilter

2012-08-16 Thread Sven Meier
+1 The filter looks useful to me and I don't see a problem with the limitation. Sven Jeremy Thomerson schrieb: >All, > > I created this blog post [1] last year and in quite a few of my Wicket >classes people ask about how to do this same thing. I can commit it to >core in 1.5 / 6.0 if others

Re: Multi-part content in nested forms (Wicket 6.0)

2012-08-16 Thread Pouyan Zaxar
Update: the problem is solved if you add the outer form to the AjaxFallbackButton of inner from, so instead of new AjaxFallbackButton("innerSubmit",innerForm) you should do new AjaxFallbackButton("innerSubmit",outerForm) Sorry for the fuss. Best Pouyan On Tue, 2012-08-14 at 14:43 +0200, Pouy