[jQuery] Re: [validate] automatically clear error messages when pass validation rule?

2008-06-27 Thread Josh Joy
Ok, cool. I see what you're saying. Is there any way around this? The issue I'm facing is that we have a common header and common footer, the table begins inside the header and ends in the footer, so it's hard to figure out a nice solution other than having a form on every page. Thanks, Josh On

[jQuery] Re: [validate] automatically clear error messages when pass validation rule?

2008-06-27 Thread Jörn Zaefferer
Looks like your markup is invalid: The form doesn't surround the table, instead its closed instantly. Its weird that the validation works at least in parts. This is the rendered html: <-- closed! ... Jörn On Thu, Jun 26, 2008 at 6:39 PM, Josh Joy <[EMAIL PROTECTED]> wrote: > Sorry, try here

[jQuery] Re: [validate] automatically clear error messages when pass validation rule?

2008-06-26 Thread Josh Joy
Sorry, try here http://snippets.dzone.com/posts/show/5700 On Thu, Jun 26, 2008 at 2:50 AM, Jörn Zaefferer < [EMAIL PROTECTED]> wrote: > > I don't see an attachment - could you upload that somewhere? > > On Wed, Jun 25, 2008 at 11:57 PM, Josh Joy <[EMAIL PROTECTED]> wrote: > > Ok, I have attached

[jQuery] Re: [validate] automatically clear error messages when pass validation rule?

2008-06-26 Thread Jörn Zaefferer
I don't see an attachment - could you upload that somewhere? On Wed, Jun 25, 2008 at 11:57 PM, Josh Joy <[EMAIL PROTECTED]> wrote: > Ok, I have attached a sample html. > > It seems that using tables is causing some confusion? I'm not sure. > > Hope you can pinpoint what I'm doing wrong. > > Note

[jQuery] Re: [validate] automatically clear error messages when pass validation rule?

2008-06-25 Thread Josh Joy
Ok, I have attached a sample html. It seems that using tables is causing some confusion? I'm not sure. Hope you can pinpoint what I'm doing wrong. Note I'm using spring so it does the data object binding for me which is the reason for the name. I changed the id to "password" cuz I was figuring

[jQuery] Re: [validate] automatically clear error messages when pass validation rule?

2008-06-25 Thread Jörn Zaefferer
That looks like a bug. Once a label is inserted, its supposed to be updated and not appended again. Could you upload a testpage and post the url? Jörn On Wed, Jun 25, 2008 at 6:00 PM, Josh Joy <[EMAIL PROTECTED]> wrote: > I mean remove the error messages. Whenever I hit submit, and if a field >

[jQuery] Re: [validate] automatically clear error messages when pass validation rule?

2008-06-25 Thread Josh Joy
I mean remove the error messages. Whenever I hit submit, and if a field still does not pass the validation rule, the old error message remains, and the same message gets appended twice. simple example (error message) input field [submit] I click submit, and input field still doesnt pass, now my

[jQuery] Re: [validate] automatically clear error messages when pass validation rule?

2008-06-25 Thread Jörn Zaefferer
What are you referring to with "clear"? They are hidden by default, isn't that enough? Jörn On Wed, Jun 25, 2008 at 4:26 AM, Josh Joy <[EMAIL PROTECTED]> wrote: > Hi, > > How do I clear the error messages when it passes the validation rules? I was > hoping it would clear automatically. Is there