[jQuery] Re: Form Validation Plugin: customize input validation

2009-06-22 Thread Jörn Zaefferer
You can write a custom method: http://docs.jquery.com/Plugins/Validation/Validator/addMethod Jörn On Mon, Jun 22, 2009 at 7:21 AM, Loony2nzloony...@gmail.com wrote: This is in regards to Jörn Zaefferer's plug in. How do you customize input validation so that I can remove foul language?

[jQuery] Re: Form Validation Plugin: customize input validation

2009-06-22 Thread Loony2nz
OICok. i'm not really good with regular expressions (hell, i'm absolutely horrible at it), but I'll give it a shot. On Jun 22, 1:15 am, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: You can write a custom method:http://docs.jquery.com/Plugins/Validation/Validator/addMethod Jörn

[jQuery] Re: Form validation plugin

2009-04-17 Thread koolkat
When I tried it on 1.3.2, the messages displayed briefly but then the form submitted. Is there some other change I need to make? Thanks. On Apr 15, 11:59 pm, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: The current validation plugin works fine with both 1.2.6 and 1.3.2. Jörn On Thu,

[jQuery] Re: Form validation plugin

2009-04-17 Thread Rick
I bet you're just missing a comma or something somewhere.. On Apr 17, 1:11 pm, koolkat merrill.ma...@yahoo.com wrote: When I tried it on 1.3.2, the messages displayed briefly but then the form submitted. Is there some other change I need to make? Thanks. On Apr 15, 11:59 pm, Jörn Zaefferer

[jQuery] Re: Form validation plugin

2009-04-17 Thread Mark (Germany)
i have major trouble to get the form validation plugin from Jörg to run it seems like it cannot deal with forms coming from a framework like CAKEPHP the fields are build the following by cake: textarea name=data[Poll][descr] cols=30 rows=13 class=bbcode width=100% id=PollDescr /textarea well,

[jQuery] Re: Form validation plugin

2009-04-16 Thread Jörn Zaefferer
The current validation plugin works fine with both 1.2.6 and 1.3.2. Jörn On Thu, Apr 16, 2009 at 1:48 AM, koolkat merrill.ma...@yahoo.com wrote: I have been using the form validation plugin with jquery 1.2.6. I would like to use the new jquery version 1.3.2 but was wondering if there is a

[jQuery] Re: form/validation plugin questions

2008-10-11 Thread Jörn Zaefferer
Take a look at the available options: http://docs.jquery.com/Plugins/Validation/validate In this case, showErrors, errorPlacement, errorContainer and errorLabelContainer should be interesting. You can use the remote-method to do serverside validation:

[jQuery] Re: Form Validation Plugin

2007-05-21 Thread Mandy Singh
Jon, Karl - I am facing a strange issue today. After pushing to a production environment only for FF 2.0.0.3, the validate plugin is not working. It works fine in IE 6 7. It works fine locally as well. I had put the validate code inside $(document).ready but seems like there is a problem

[jQuery] Re: Form Validation Plugin

2007-05-21 Thread Mandy Singh
Anyone? The FF 2.0.3 is becoming a big issue for me now. On 5/21/07, Mandy Singh [EMAIL PROTECTED] wrote: Jon, Karl - I am facing a strange issue today. After pushing to a production environment only for FF 2.0.0.3, the validate plugin is not working. It works fine in IE 6 7. It works

[jQuery] Re: Form Validation Plugin

2007-05-21 Thread Mandy Singh
I have nailed down the issue, but I will open a separate thread to track that as it's a bigger issue. Stay Tune..but please reply. On 5/21/07, Mandy Singh [EMAIL PROTECTED] wrote: Anyone? The FF 2.0.3 is becoming a big issue for me now. On 5/21/07, Mandy Singh [EMAIL PROTECTED] wrote:

[jQuery] Re: Form Validation Plugin

2007-05-17 Thread Jörn Zaefferer
Karl Swedberg wrote: BTW, would anyone be interested in a short write up on this or the info on the plugin page is fine for everyone to understand? As I had some difficulties in catching up with it (coming from the prototype world), I thought I'll whip something up real fast. Thoughts? The

[jQuery] Re: Form Validation Plugin

2007-05-16 Thread Mandy Singh
:* [jQuery] Re: Form Validation Plugin Oh! Didn't know that. Thanks for pointing that out Dan (I am new to jquery had been using prototype till now). So, just the packed version of the file is good enough? And using that I can define the rules such as - $(#myform).validate({ event: keyup

[jQuery] Re: Form Validation Plugin

2007-05-16 Thread Karl Rudd
@googlegroups.com Subject: [jQuery] Re: Form Validation Plugin Oh! Didn't know that. Thanks for pointing that out Dan (I am new to jquery had been using prototype till now). So, just the packed version of the file is good enough? And using that I can define the rules such as - $(#myform

[jQuery] Re: Form Validation Plugin

2007-05-16 Thread Mandy Singh
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mandy Singh Sent: Tuesday, May 15, 2007 2:06 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Form Validation Plugin Oh! Didn't know that. Thanks for pointing that out Dan (I am new to jquery had been

[jQuery] Re: Form Validation Plugin

2007-05-16 Thread Dan G. Switzer, II
Mandy, BTW, would anyone be interested in a short write up on this or the info on the plugin page is fine for everyone to understand? As I had some difficulties in catching up with it (coming from the prototype world), I thought I'll whip something up real fast. Thoughts? The more information

[jQuery] Re: Form Validation Plugin

2007-05-16 Thread Karl Swedberg
On May 16, 2007, at 8:11 AM, Dan G. Switzer, II wrote: Mandy, BTW, would anyone be interested in a short write up on this or the info on the plugin page is fine for everyone to understand? As I had some difficulties in catching up with it (coming from the prototype world), I thought I'll

[jQuery] Re: Form Validation Plugin

2007-05-15 Thread Luc Pestille
Jörn Zaefferer's Validation plugin ( http://bassistance.de/jquery-plugins/jquery-plugin-validation/ http://bassistance.de/jquery-plugins/jquery-plugin-validation/ ) will do what you want. It does huge stuff too, but also very simple validation, just add a class {required:true} to inputs, at

[jQuery] Re: Form Validation Plugin

2007-05-15 Thread Mandy Singh
Luc, I had a look at that before I posted. That does what I want but for simple validations I can't include 40-50 KB of code (cmforms, meta.js, jquery.validate)...thats an overkill when I just want a required:true check. Any other? Thanks, Mandy. On 5/15/07, Luc Pestille [EMAIL PROTECTED]

[jQuery] Re: Form Validation Plugin

2007-05-15 Thread Dan G. Switzer, II
Mandy, I had a look at that before I posted. That does what I want but for simple validations I can't include 40-50 KB of code (cmforms, meta.js, jquery.validate)...thats an overkill when I just want a required:true check. Any other? The only thing that is required is jquery.validate.js. The

[jQuery] Re: Form Validation Plugin

2007-05-15 Thread Dan G. Switzer, II
Exactly! -Dan _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mandy Singh Sent: Tuesday, May 15, 2007 2:06 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Form Validation Plugin Oh! Didn't know that. Thanks for pointing that out Dan (I am new