[jQuery] Validate plugin, weird issues after remote validation implementation

2009-09-10 Thread Jean-Michel
Hi, I got a form with a few fields. 2 of them are using remote validation. So it's basically checking if username and email are already in database. The problem is those field seems to validate as soon has i click into another field causing the error message to show up no mather if I did put

[jQuery] [validate] All error messages are shown when using remote validation

2009-09-08 Thread Jean-Michel
I got a form with a few inputs. I'm using remote validation for 2 of them. For some reasons when I as an example enter something in a form that uses remote validation it gets validated after I click into the next input it just doesn't wait for the form to get submitted. Any other inputs which

[jQuery] [validate] Refreshing the validator after dynamically adding a class to an element

2009-08-11 Thread Jean-Michel
Hi, I know the refresh() method is gone since version 1.2 but for some reason even if it's suposed to work without it I can't get it to work. Here's the scenario: I got a select box, depending on the selection I want certain element to validate so I dynamically add validation class to those

[jQuery] Re: [validate] Refreshing the validator after dynamically adding a class to an element

2009-08-11 Thread Jean-Michel
Thanks, doing .toggleClass(required) fixed everything. On Aug 11, 9:32 am, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: Give that a try: .toggleClass(required) In your approach, its likely that the metadata isn't picked up, so you'd have to manually remove the cached metadata, via