[jQuery] Re: Validation: AJAX-based without "remote"?

2008-10-31 Thread Jörn Zaefferer
Returning messages from the server with a single request for the whole form is a long-term goal, but currently not feasible. Jörn On Fri, Oct 31, 2008 at 9:31 PM, Nishan Karassik <[EMAIL PROTECTED]> wrote: > > Jorn, > > I've been looking at the remote method of your Validation plugin, but > was w

[jQuery] Re: Validation: AJAX-based without "remote"?

2008-10-31 Thread Nishan Karassik
Jorn, I've been looking at the remote method of your Validation plugin, but was wondering if its possible to send all fields in a form and return the error within the php validation file like so: $request.' is not a valid email address'); } else { $valid = array('email_address' => 'true'); } e

[jQuery] Re: Validation: AJAX-based without "remote"?

2008-10-31 Thread Jörn Zaefferer
Currently I can only recommend to look at the implementation of the remote method, and replicate whats there. Its rather complex and it would be nice to refactor it to make this easier - your help is welcome. Jörn On Thu, Oct 30, 2008 at 7:46 PM, w1ntermut3 <[EMAIL PROTECTED]> wrote: > > Hi, > >