Re: Wicket 8 migration / header contributions question

2018-05-23 Thread Andrea Del Bene
Actually i've just expanded it, but I'm considering the idea of adding some kind of note or section for those issues like WICKET-6498  and WICKET-6189 which might be tricky to deal with. On 23/05/2018 22:36, Tobias Soloschenko wrote: Oh just saw - you added it! kind regards Tobias Am

The Apache Software Foundation Announces Apache® Wicket(TM) v8.0.0

2018-05-23 Thread Andrea Del Bene
Forwarded Message Subject: The Apache Software Foundation Announces Apache® Wicket(TM) v8.0.0 Date: Wed, 23 May 2018 06:00:12 -0400 From: Sally Khudairi To: Apache Announce List [this announcement is available online

Re: Wicket 8 migration / header contributions question

2018-05-23 Thread Tobias Soloschenko
Hi Andrea, is this also part of the migration document in confluence? kind regards Tobias > Am 23.05.2018 um 18:54 schrieb Andrea Del Bene : > > Hi, > > this should be caused by WICKET-6498. This issue has changed the behavior for > HeaderResponseDecorator. You can

Re: Wicket 8 migration / header contributions question

2018-05-23 Thread Tobias Soloschenko
Oh just saw - you added it! kind regards Tobias > Am 23.05.2018 um 18:54 schrieb Andrea Del Bene : > > Hi, > > this should be caused by WICKET-6498. This issue has changed the behavior for > HeaderResponseDecorator. You can find how to adapt your code in the migration

Re: Difficulties

2018-05-23 Thread JavaTraveler
All right sorry, it's ok, it works ! I was using, without realising it, a JSF form ^^ Really sorry for the trouble. -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html - To unsubscribe, e-mail:

Re: Difficulties

2018-05-23 Thread JavaTraveler
Hello ! I managed to do so, and make it a panel, with . But The button still refuse to work ^^ I'm trying anything I can find. Any idea ? -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html - To

[ANNOUNCE] WicketStuff 8.0.0 Released

2018-05-23 Thread Maxim Solodovnik
WicketStuff core 8.0.0 based on Apache Wicket 8.0.0 is released and soon will be available at Maven Central! The changelog since 8.0.0-M9 is: Andrea Del Bene (1): Added a reserved geocoder api key for CI Maxim Solodovnik (10): Redundant local Geocoder is removed before_script

ListView

2018-05-23 Thread JavaTraveler
Hello, Does anyone know how to update a listView with an ajaxButton, after it's construction when it was empty ? For now, I have this : final ListView pieceView = new ListView("pieceView", pieces) { /** * */

Re: ListView

2018-05-23 Thread Maxim Solodovnik
You need to change your code a little: 1) pieceView.setOutputMarkupId(true); is not necessary 2) target.add(wmc); instead of target.add(wmc.add(pieceView)); should work as expected :) On Wed, May 23, 2018 at 9:19 PM, JavaTraveler wrote: > Hello, > > Does anyone know how

Re: ListView

2018-05-23 Thread Sven Meier
Hi, pass a model with the pieces to the listView, this way it will always renderContexrRelative an up-to-date list. new ListView("pieceView", piecesModel) Have fun Sven Am 23. Mai 2018 16:19:11 MESZ schrieb JavaTraveler : >Hello, > >Does anyone know how to update a

Re: Wicket 8 migration / header contributions question

2018-05-23 Thread Andrea Del Bene
Hi, this should be caused by WICKET-6498. This issue has changed the behavior for HeaderResponseDecorator. You can find how to adapt your code in the migration guide or in the release note of Milestone 9: https://wicket.apache.org/news/2018/02/17/wicket-8.0.0-M9-released.html On

Wicket 8 migration / header contributions question

2018-05-23 Thread Tobias Gierke
Hi, I'm in the process of migrating our application from Wicket 7.10 to Wicket 8 and encountered some weirdness with regards to header contributions. Our application has a top-level WebPage that defines a HeaderResponseContainerat the very end of the page markup and all other application