Re: [jQuery] jQuery Validation Plugin messages by field rule.

2009-12-19 Thread Andre Polykanine
&MSN: arthaelon @ yandex.ru; Jabber: arthaelon @ jabber.org Yahoo! messenger: andre.polykanine; ICQ: 191749952 Twitter: m_elensule - Original message - From: Antti To: jQuery (English) Date: Saturday, December 19, 2009, 12:09:32 PM Subject: [jQuery] jQuery Validation Plugin messages by field

[jQuery] jQuery Validation Plugin messages by field rule.

2009-12-19 Thread Antti
Hi! Im quite newbie with jquery but so far i think it realy rocks. Anyways im now trying to use Validation plugin but have one problem to solve to get in job done. My form has natrually many fields, each field can have many rules, even custom rules. Trouble is that i cant find a way to overwrite d

[jQuery] JQuery validation plugin - custom validation for group of html elements

2009-11-21 Thread Narasimha
I have a set of combo boxes on a HTML form which act as a Date control: 2009 2008 Jab Feb 1 31 No I want to validate whether the user has left any value (year/month/ day) as blank, or if the values form a valid date (example

[jQuery] JQuery validation plugin - custom validation for group of html elements

2009-11-21 Thread Ngm
I have a set of combo boxes on a HTML form which act as a Date control: 2009 2008 Jab Feb 1 31 No I want to validate whether the user has left any value (year/month/day) as blank, or if the values form a valid date

[jQuery] JQuery validation plugin - error highlight problem

2009-11-10 Thread narasimhagm
I have a form with two input textboxes, and I have included JQuery validation rules for both: $(document).ready(function() { $('#respondForm').validate({ onclick: false, onkeyup: false, onfoc

[jQuery] jquery validation plugin issue with IE 8

2009-09-17 Thread Edgar Méndez .
I have a problem with the validation plugin when I add a new validation method in IE8, when I submit the form it just validate the added method but the other fields are submitted anyway. Also I have another problem with the valid() function, when I try to see if the function is true to show a co

[jQuery] Jquery Validation plugin doesn't working on ASP NET MVC

2009-08-27 Thread Edgar Méndez .
I'm trying to use the Jquery Validation plugin on aspnet mvc fframework but it doesn't work, when I open the firebug console it display an error: jQuery is not defined [Break on this error] jQuery.extend(jQuery.fn, {\n I don´t know how to fix this issue an had already added the jquery-1.3.2.js t

[jQuery] jQuery Validation Plugin & jQuery Form Plugin

2009-07-23 Thread Hayden Hancock
Validation plug-in version: 1.5.5 Form plug-in version: 2.28 I was able to get the validation and submit to work together properly. However, when using options in the validation plugin such as errorClass and validClass I was ran into some trouble. Upon submission, these classes would stick/stay.

[jQuery] jquery validation plugin. Need help with passing variable to jQuery.format

2009-06-05 Thread talisien
I'm having some troubles with passing variables to jQuery.format I have a script (php) that's checks if the domain part exists. If not it will show an message The following code works #1 It split an email address and assigns the domain name to the var hostName $(document).ready(function() { va

[jQuery] jQuery Validation Plugin

2009-05-22 Thread bhan...@hcinsight.com
Can anyone tell me how i can change which attribute on my form field triggers the validation? currently it appears the be the name attribute. So in my Rails app using Rails helpers, it sets the name to somthing like formname ['fieldname'] and the whole name. in my script if i do something like

[jQuery] JQuery Validation plugin with Django (New) Forms (V1.0) - Are these compatible?

2009-05-05 Thread BrendanC
JQuery newbie question re using validation plugin with Django newform. I have a simple email feedback contact django form that I wanted to enhance with some JQuery validation. I created a standalone (Non Django) version of the form and it works correctly. However when I create a Django version o

[jQuery] jQuery Validation Plugin - rule metadata documentation?

2009-04-23 Thread Brad
Are the options, usage and limitations for the jQuery Validation rules using metadata in markup, e.g., class="required date", documented anywhere? There is http://docs.jquery.com/Plugins/Validation#List_of_built-in_Validation_methods, but that is for setting up rules in the JS.

[jQuery] jQuery Validation plugin and ASP.NET postbacks

2009-03-31 Thread johanders...@gmail.com
Hi, Have anyone been able to use the jQuery validation script and been able to make the buttonclick cause a post back? The form validates fine but the post is never made. If I add the option submitHandler on the plugin it goes in there, but that does not really help as i dont want to do a ajax s

[jQuery] Jquery validation plugin question

2009-03-26 Thread markstegg...@googlemail.com
Hello, Thanks for building this validation plugin, I like it. I have a question: The error class automatically gets added to the label with the same for="" name, but for a certain error I need to change the element that gains the "error" class. For instance, I added this line to the error place

[jQuery] jQuery Validation Plugin & ASP.NET

2009-03-23 Thread Zach
I've tried to get this to work for the past 4 hours and I'm stuck. I've got a master page with the following scripts added. this is the form tag on my master page in the HTML output of the page, it actually renders to "aspnetForm". in the content page, this is what I have

[jQuery] jQuery validation plugin -- how to validate an input only if it contains info

2009-03-11 Thread clorentzen
Hi -- I've got a contact form here http://www.dianlofton.com/contact.shtml ...using the jquery.validate.js plugin. The form has an optional input for a phone number, which I'd like to have validated -- but only if there is info in the input. If you look at the source code for that page, you'll

[jQuery] jquery validation plugin and hidden elements

2008-12-30 Thread nal
Hi, I have been using a prototype form validation http://tetlaw.id.au/view/javascript/really-easy-field-validation but I now wish to go to jquery. I can get it working but there is something i can't get to work and it was the best feature of the prototype script mentione above. I would like the

[jQuery] jQuery validation plugin - Italian Translation

2008-10-04 Thread D4.Solutions
filename: messages_it.js /* * Traduzione dei messaggi di default per il pugin jQuery validation. * Language: IT * Traduzione a cura di Davide Falchetto * E-mail: [EMAIL PROTECTED] * Web: www.d4solutions.it */ jQuery.extend(jQuery.validator.messages, { required: "Campo obbligatorio."

[jQuery] jquery validation plugin problem in textarea [validate]

2008-09-02 Thread andy prasetyo
I use jquery validation plugin from bassistance.de, but everytime i use it on textarea, it doesnt work (doesnt pass the value properly). Any suggestions?

[jQuery] jQuery Validation Plugin noConflict issue

2008-05-24 Thread Ale
Hi, I'm trying to use the latest version of jQuery and the validation plugin. However, when I try to use jQuery.noConflict() I show 1 error speficying that $ is not a function. Any help regarding this issue will be fully appreciated! Ale

[jQuery] jQuery Validation Plugin

2008-05-11 Thread juro
Hi, In the documentation of the jQuery Validation Plugin, by default the form is not sent if invalid. "By default, the form submission is prevented when the form is invalid, and submitted as normal when it is valid." In my case this is not true. How can I debug this?

[jQuery] jQuery Validation Plugin

2008-02-22 Thread jmcervera
Hello, Has anybody use the jQuery Validation plugin with Ruby on Rails. I am having trouble with it. It seems only function when the form use the get action, but not with post. Thanks Juanma Cervera

[jQuery] jQuery Validation plugin and Tabs plugin

2007-08-17 Thread webs86
Hi... Anybody can tell me about how can I use jQuery Plugin Validation and Tabs plugin, because they can't work... this is my javascript source code: $().ready(function() { $("#aggiungi_utente").validate({ rules: { rag_soc: required, piva: required, mail: { r