Re: Wicket Example

2017-11-17 Thread Martin Grigorov
This can be fixed in wicket-examples/pom.xml: https://github.com/apache/wicket/blob/01e76cf5e6f13962af0b336f7d02e256cb0ea68e/wicket-examples/pom.xml#L301-L303 wicket-examples.war should be renamed to ROOT.war before being copied to /usr/local/tomcat/webapps I don't see a way to do it with

RE: Wicket Example

2017-11-17 Thread Chris Colman
I just noticed this link is also down at the moment: http://examples6x.wicket.apache.org/ajax/tabbed-panel but if you go to: http://examples6x.wicket.apache.org/wicket-examples/index.html and click 'Ajax' then 'Tabbed Panel' you arrive a working tabbed-panel page:

Re: Nested forms in WizardStep

2017-11-17 Thread Sven Meier
Hi, I never had to build such a scenario, but IFormVisitorParticipant can help you? Let your nested Form (or its parent) implement the interface and return false from #processChildren(). Have fun Sven Am 17.11.2017 um 09:18 schrieb Dirk Forchel: No, I was not searching for a solution

Re: Setting Wicket Configuration Mode to Deployment

2017-11-17 Thread Sven Meier
Hi, changing the configuration type in #init() is too late, as it was already decided by the application at that point of time. You can: - override #getConfigurationType() - set the type into system-properties/filter-init-param/context-param before the application is created. Have fun

Setting Wicket Configuration Mode to Deployment

2017-11-17 Thread David Beer
Hi All I am applying the final touches to my application before going to staging/production. I use the Webservlet 3 process via java code and annotations for setting the Wicket Filter all works well. I am trying to add the init param for the configuration mode. I was hoping I could use maven

Re: Nested forms in WizardStep

2017-11-17 Thread Dirk Forchel
No, I was not searching for a solution how to "disabling nested form validation" as I was unsure whether it's a proper solution to use nested forms in a WizardStep. To get an impression how the checkout should look like have a look at