Re: [Wicket-user] Client-side form validation in Wicket 1.2 or 1.3

2007-01-24 Thread Vincent Demay
Hi, We make some client-side validation (not also client-side but with ajax) in Wicket-Contrib-Dojo. But it is not as "powerfull" as we expected for the moment because we do not have time to do that for the moment. You can see a live demo here : http://www.demay-fr.net:8080/WCD13/app : it is

Re: [Wicket-user] Client-side form validation in Wicket 1.2 or 1.3

2007-01-23 Thread Eelco Hillenius
It is actually pretty easy to build with Wicket if you want. Like Igor said, there is a project for this in wicket-stuff, but as the javascript project died and I (who set up the project) don't want to support it much as I never actually used it for anything real. Imo Ajax is a lot more powerful.

Re: [Wicket-user] Client-side form validation in Wicket 1.2 or 1.3

2007-01-23 Thread Igor Vaynberg
there are a couple of reasons why we havent done it wicket's error reporting is very flexible as far as scoping and presentation goes, it would not be trivial to get client-side and server-side matching, eg multiple feedback panels with their own message filters, etc, etc. you cannot perform the

Re: [Wicket-user] Client-side form validation in Wicket 1.2 or 1.3

2007-01-23 Thread Sean Sullivan
Tapestry does a very good job with client-side form validation. Perhaps there is code in the Tapestry repository that could be using in Wicket? BTW, these are the things that I like about form validation in Tapestry 4.1 1) client-side form validation 2) CSS class for invalid fields fieldInvali

Re: [Wicket-user] Client-side form validation in Wicket 1.2 or 1.3

2007-01-23 Thread Igor Vaynberg
no, wicket doesnt provide this out of the box. there have been some attempts to provide such functionality, i think there was a project that integrated fvalidate js lib with wicket in wicket-stuff somewhere. -igor On 1/23/07, Sean Sullivan <[EMAIL PROTECTED]> wrote: Does Wicket 1.x have the

[Wicket-user] Client-side form validation in Wicket 1.2 or 1.3

2007-01-23 Thread Sean Sullivan
Does Wicket 1.x have the ability to perform client-side form validation? I'm looking for something similar to Tapestry's client-side validation feature: http://tapestry.apache.org/tapestry4.1/usersguide/clientside-validation.html Cheers, Sean ---