Re: Wicket 7.1.0 breaks OnChangeAjaxBehavior on Select2

2015-10-28 Thread Peter Henderson
I've tried Wicket 7.1.0 with libraryDependencies += "org.wicketstuff" % "wicketstuff-select2" % "7.0.0" withSources() withJavadoc() and libraryDependencies += "org.wicketstuff" % "wicketstuff-select2" % "7.1.0" withSources() withJavadoc() Wicket 7.0.0 with select2 7.0.0 (which works) On Wed,

selectize for version 6.x ?

2015-10-28 Thread armandoxxx
Hey is there a build for wicket 6.x version ... or I'll have to implement one myself ? regards Armando -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/selectize-for-version-6-x-tp4672405.html Sent from the Users forum mailing list archive at Nabble.com.

Wicket 7.1.0 breaks OnChangeAjaxBehavior on Select2

2015-10-28 Thread Peter Henderson
Hi fellow users. A quick heads up. I've just upgraded from wicket 7.0.0 to 7.1.0. It looks like something has broken OnChangeAjaxBehavior on Select2 form fields. Hopefully I'll be able to build a quickstart later. The exception for the record.

Re: selectize for version 6.x ?

2015-10-28 Thread armandoxxx
Thank you ... will consider your proposal ... regards Armando -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/selectize-for-version-6-x-tp4672405p4672410.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Wicket 7.1.0 breaks OnChangeAjaxBehavior on Select2

2015-10-28 Thread Maxim Solodovnik
It seems we are using AjaxFormComponentUpdatingBehavior("change") in our project and it works as expected On Wed, Oct 28, 2015 at 6:37 PM, Peter Henderson < peter.hender...@starjar.com> wrote: > I've tried > > Wicket 7.1.0 with > libraryDependencies += "org.wicketstuff" % "wicketstuff-select2" %

Re: Wicket 7.1.0 breaks OnChangeAjaxBehavior on Select2

2015-10-28 Thread Martin Grigorov
Hi, 'fg:fg_body' says that there is a Border component in the hierarchy. There were some changes in Border.java related to component queueing. Maybe here is the problem. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Wed, Oct 28, 2015 at 2:37 PM, Peter

Re: selectize for version 6.x ?

2015-10-28 Thread Martin Grigorov
Hi, There is no version for Wicket 6.x yet. Pull requests are welcome! Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Wed, Oct 28, 2015 at 2:24 PM, armandoxxx wrote: > Hey is there a build for wicket 6.x version ... or I'll have to

Re: Wicket 7.1.0 breaks OnChangeAjaxBehavior on Select2

2015-10-28 Thread Maxim Solodovnik
Will try to check later today Please file ticket on the github, will try to address it ASAP On Wed, Oct 28, 2015 at 6:31 PM, Peter Henderson < peter.hender...@starjar.com> wrote: > Hi fellow users. > > A quick heads up. > > I've just upgraded from wicket 7.0.0 to 7.1.0. > > It looks like

Re: Wicket 7.1.0 breaks OnChangeAjaxBehavior on Select2

2015-10-28 Thread Maxim Solodovnik
BTW which wicket library for select2 are you using? On Wed, Oct 28, 2015 at 6:33 PM, Maxim Solodovnik wrote: > Will try to check later today > Please file ticket on the github, will try to address it ASAP > > On Wed, Oct 28, 2015 at 6:31 PM, Peter Henderson < >

Re: Wicket 7.1.0 breaks OnChangeAjaxBehavior on Select2

2015-10-28 Thread andrea del bene
Could you create a quickstart reproducing the problem and create a Jira issue? Thank you. On 28/10/2015 13:31, Peter Henderson wrote: Hi fellow users. A quick heads up. I've just upgraded from wicket 7.0.0 to 7.1.0. It looks like something has broken OnChangeAjaxBehavior on Select2 form

HomePage reloads on every Ajax submit

2015-10-28 Thread hfriederichs
Hello, I'm using Wicket 6.8.0 on Eclipse WDT (WebSphere application server). This is my nth Wicket Application, but I can't figure out why keeps happening. Whether a TextField or a Button, the corresponding AjaxFormSubmitBehavior is never executed, instead, the Constructor of the homepage is

Re: HomePage reloads on every Ajax submit

2015-10-28 Thread Martin Grigorov
Hi, >From the symptoms it sounds like either PageExpiredException or StalePageException is being thrown. Put a breakpoint in the constructors of those and see what happens. I'd bet on PEX due to some NotSerializableException but it should be in the logs in this case. Martin Grigorov Wicket

Re: HomePage reloads on every Ajax submit

2015-10-28 Thread hfriederichs
That didn't make any difference... Still no errors. When I open the application in a browser, the homepage loads once. Strangely, on every Ajax submit, the homepage loads twice. Regards -- View this message in context:

Re: Wicket 7.1.0 breaks OnChangeAjaxBehavior on Select2

2015-10-28 Thread Gabriel Landon
Maybe it is also related to the problem I'm having in 7.1.0 with wicket path and TransparentWebMarkupContainer See : http://apache-wicket.1842946.n4.nabble.com/wicket-7-1-0-change-in-wicket-path-with-TransparentWebMarkupContainer-tp4672400.html -- View this message in context:

Re: Wicket 7.1.0 breaks OnChangeAjaxBehavior on Select2

2015-10-28 Thread Peter Henderson
Hi Gabriel, Yes I think it is. While cobbling together my quick start. I noticed my form group panel was using a TransparentWebMarkupContainer. Changing this to a WebMarkupContainer and my quick start works fine with wicket 7.1.0 I've created an issued WICKET-6014