Re: WebSocket

2019-02-19 Thread Virginie Garcin
hot in the dark: tomcat 7 is too old ...Does it work with tomcat 8/8.5/9 ? > > On Tue, Feb 19, 2019, 18:30 Virginie Garcin > wrote: > > > Hello, > > > I'm trying to use WebSocket in Wicket 8.3.0, with Tomcat 7.0.85. > > > In pom, I have: > > > o

WebSocket

2019-02-19 Thread Virginie Garcin
Hello, I'm trying to use WebSocket in Wicket 8.3.0, with Tomcat 7.0.85. In pom, I have: org.apache.wicket wicket-native-websocket-javax ${wicket.version} In web.xml, I did change the WicketFilter class name with:

Re: FormTester and Ajax

2018-04-08 Thread Virginie Garcin
Hello, Sorry for the ugly formatting, I hope this will be displayed correctly below: Hello, I need some help with FormTester and Ajax. I want to test a form, in which the second dropdown is updated in ajax when we change the first dropdown. The form is working fine but I can't manage to test

FormTester and Ajax

2018-04-08 Thread Virginie Garcin
Hello, I need some help with FormTester and Ajax.I want to test a form, in which the second dropdown is updated in ajax when we change the first dropdown.The form is working fine but I can't manage to test it. DropDownChoice companyDropDownChoice = new DropDownChoice<>( "company",

Re: wicket:for inside a propertyListView doesn't generate id on the input

2018-01-03 Thread Virginie Garcin
> Met vriendelijke groet, > Kind regards, > > Bas Gooren > > Op 3 januari 2018 bij 08:02:15, Virginie Garcin ( > virginie.gar...@equitativa.com) schreef: > > Hi there, > > When we are using wicket:for into a PropertyListView, the id is not > automatically set

wicket:for inside a propertyListView doesn't generate id on the input

2018-01-02 Thread Virginie Garcin
Hi there, When we are using wicket:for into a PropertyListView, the id is not automatically set on the related input, except if we force it by using setOutputMarkupId(true). Outside a propertyListView the id is generated without forcing it. Please can you tell me if it's normal, if I use it

Re: Localized warning in Validator

2017-07-09 Thread Virginie Garcin
> > have to consult with the other wicket devs) > > > > For what I'm worth, in our applications we haven't seen the need for > > warnings using localization and substitutions, so we never encountered this > > omission. > > > > Martijn > > > >

Localized warning in Validator

2017-07-05 Thread Virginie Garcin
Hello, I have a field validator. I want to be able to choose if it will be an error (blocking the action) or a warning (just display a non-blocking warning). Here is the code I use, that is working except the error/warning is not localized: public class ValidatorWithWarningOption implements