Re: Partial form submit

2006-03-09 Thread Jesse Kuhnert
I almost fixed this yesterday but couldn't make up my mind without more input from people. Does anyone ~really~ care if the validation errors disappear when you refresh the form? If not then it's as good as fixed tomorrow :) On 3/8/06, Ben Dotte <[EMAIL PROTECTED]> wrote: > > Hi Aj, > > This is e

Re: Partial form submit

2006-03-09 Thread Fabio Bondioli
I had this problem too. I solved it avoiding tapestry validator system and building a custom javascript library that performs heavy client-side validation. I can validate dates/numbers/selections and more and it can be expanded with Ajax to do server side validation too. On each submit button

RE: Partial form submit

2006-03-08 Thread Ben Dotte
Hi Aj, This is essentially what the refresh listener on form is for; it bypasses client-side validation but unfortunately it does not bypass server-side validation right now. And if you call clearErrors() on your delegate in the refresh listener to get rid of the server-side errors, you end up los