How to suppress AJAX Debug JS

2014-11-20 Thread Christian Smolka
Hi @all! I'm using 6.18 and I'm in deployment mode and I already called this.getDebugSettings().setAjaxDebugModeEnabled(false); But still the JQuery AJAX debug JS file is present in the final markup. So dropping following lines Wicket.Ajax.DebugWindow.enabled=true;

Let AbstractMarkupParser be a bit more non-strict

2014-11-12 Thread Christian Smolka
Hi everybody! I have a problem with the AbstractMarkupParser. My application uses a HTML template to nest itself into a given web site. This template is been pulled from a CMS. Sometimes, this CMS does not return 100% compliant HTML5, although the doctype claims it. Recently it returned an empty

Re: Validating multiple components as one

2014-04-17 Thread Christian Smolka
into a form and submit the whole form Wrapping all three inputs in a form with an AjaxFormSubmitBehavior is the easiest solution. Do you have any problems with it? Sven On 04/14/2014 07:45 PM, Christian Smolka wrote: Hi to everybody! My little problem is about validating multiple input fields

Validating multiple components as one

2014-04-14 Thread Christian Smolka
Hi to everybody! My little problem is about validating multiple input fields as a single one. So, I have three DoB fields (one for the day, one for the month and one for the year) that should be validated as a single date. While using Wicket 1.5 we overwrote AjaxEventBehavior#getEventHandler()