1
vote
1answer
56 views

input type = email jquery validate overriding mvc data annotation

I have the following property on my viewmodel: [Required(ErrorMessage = "Email is required")] [RegularExpression(RegularExpressions.Email, ErrorMessage = "Email is not valid")] ...
0
votes
1answer
88 views

Make multiple fields required if one option or another is checked jQuery Validate

In my form, new fields appear depending on which radio button option is required. I would like to validate those fields only if the corresponding radio button is required. If the first option is ...
0
votes
1answer
54 views

Issue using remote method in jquery validation

I'm following this article in order to validate my form My problem is when I use the remote method, e.g. remote: "check-username.php" Since the documentation for remote method is not so clear for ...
0
votes
7answers
153 views

Validate user input for extra long words in textarea

I have a problem here with validating user's input in textarea. A user is suppose to enter his description in one of the textarea feild in form. But some people just put the random text like ...
0
votes
2answers
46 views

jquery mobile. form validator (with a select)

im trying to validate a form like this: <input type="text" id="nombre" name="nombre" data-mini="true" required /> <select id="comboPaises" name="comboPaises" data-mini="true"> <option ...
0
votes
1answer
48 views

Is server side validation required, when data is posted through ajax?

In my project, I am storing FORM data by POSTING it to one php file. I am sending data through ajax on buttonclick and i am doing client side validation, so anyways i can not do database insertion ...
0
votes
1answer
88 views

Is there a way to mingle validations in jQuery and CodeIgniter

If we want to include jQuery Validation plugin as well as code igniter form_validation class at once we have to define the validation rules in both jQuery validation script as well as in CodeIgniter ...
2
votes
2answers
214 views

JQuery validate plugin with e-mail validation

I am currently using JQuery Validate plugin in along with some tip plugin to validate a form. I need to validate the e-mail address as well, other then just checking all fields have been filled out. I ...
0
votes
3answers
215 views

select at least one checkbox out of 3 required field validator

I am trying to make my code to put required field validator so at least one checkbox will be selected out of three. This is my code: <div class="left marginT5 marginR10"> <input ...
0
votes
1answer
330 views

jQuery validation plugin: accept only US, Canada and Mexic zip code?

I'd like to use jQuery validation plugin to validate a zip code field that accept only US, Canadian or Mexican zip code format, but there doesn't seem to be a defined rule for it. I've searched Google ...
5
votes
1answer
193 views

jQuery Validator at a “Page Level”

So I've already written a custom jQuery validator method. And it is tied to 1 or more individual dropdown lists. (I'm in asp.net, btw) jQuery.validator.addMethod("dropdownBoxHasItemSelected", ...
0
votes
2answers
65 views

Trouble validating form using jquery (plugin)

The plugin appears to be working fine. If I leave my two fields empty I get notified that they are required and that they have to be a valid number. The problem I'm having is if I fill in the two ...
0
votes
2answers
101 views

jQuery Validate Plugin - Display minlength “Characters to go” in error message

I'm using the jQuery Validate Plugin to validate forms on my website. I would like to change the default minlength message to show the number of characters STILL NEEDED in the field, and for this ...
1
vote
5answers
69 views

Setting same properties for more fields

I have two or more text fields and I want to apply the same properties to them, avoiding to write two or more times the same code This doesn't work: $("#form").validate({ rules: { ...
-3
votes
2answers
47 views

How to validate hidden fields

I have a form name="myform" but there is exists hidden fields So i want to validate those fields also, how to validate hidden fields using jquery form validation?
2
votes
1answer
2k views

jQuery Validation plugin, placing errors within Twitter Bootstrap native elements

I'm using Twitter Boostrap and am trying to place the jQuery Validation plugin errors within the correct element instead of each message being hard coded within the HTML. Please see the jsfiddle ...
0
votes
1answer
840 views

Wordpress Form Validation using jquery.validate.min.js not working

I have a custom built form in Wordpress (I considered using a form plugin but it is a 3 step form and none of the plugins I saw seemed suitable). I am trying to implement a form validation plugin ...
0
votes
1answer
425 views

jQuery Validation plugin failing to fire onblur and also not validating on submission consistently

I've used this plugin hundreds of times, literally, and never have had an issue like this.. now, when the form is submitted (with fields empty) the error labels show correctly.. yet, when you fill in ...
7
votes
1answer
220 views

Remote attribute doesn't trigger when field is blank

I'm using RemoteAttribute for a particular field on my form. The purpose of it is not important. What is important is that it needs to fire the validation action whenever the field is change. This is ...
2
votes
0answers
615 views

jQuery Validation - IP Address validation problems [duplicate]

I have developed code of how to validate IP Address. Script <script type="text/javascript" src="http://ajax.microsoft.com/ajax/jQuery/jquery-1.4.2.min.js"> </script> ...
0
votes
2answers
420 views

Disable Required Validation Specific Field in the View ASP.NET MVC 4

if someone could give me some hint I would appreciate. I'm searching for a while, and I even found a post I thought it would solve my problem, but it didn't. Disable Required validation attribute ...
0
votes
1answer
229 views

Customizing the message in a jQuery validate custom rule

I have a custom jQuery validate rule called fiftyCents() where there are two rules: if the item is free, one can "buy" it for $0.00 or they can pay greater than $0.50. if the item is NOT free, then ...
0
votes
2answers
106 views

Javascript prevent dot comma etc

I have javascript validation code, now I want to prevent . ; , ` : this my code so far : jQuery.validator.addMethod("noSpace", function(value, element) { return !value.match(/\s/g); }); ...
5
votes
2answers
133 views

What patterns do you use for Form Validation in complex forms involving many sub-views

Validation in Backbone I'm building some a complex form using Backbone. If I was to categorize the types of views I have I would say I have Model-Views and Collection-Views. Where Model views ...
0
votes
1answer
96 views

jQuery Validator Plugin: Validate contents of a div

In a SharePoint 2010 form, a Rich Text field is rendered not as a form element, but as a div. I need to use jQuery Validator Plugin to check the contents of this div. <form> <!-- this ...
0
votes
1answer
121 views

Conditional Form Validation

I have an HTML form with 3 groups of questions which users can answer either yes or no to as follows: A1 A2 A3 A4 A5 OR B1 B2 B3 OR C1 C2 C3 C4 C5 C6 Users can choose to answer either all the ...
2
votes
2answers
953 views

Custom Error Label Placement using jQuery validate (For all or some of your errors)

I would like to place one error label (Not All) in a custom location. jQuery provides this http://docs.jquery.com/Plugins/Validation/validate#toptions option but I could not find anything about how to ...
0
votes
1answer
940 views

Validate Dropdown list selected value > 0 if asp.net form textbox.text >0

Code language = VB. ASP.NET 4.0 I have a formview control on my page defaulted to insert mode so when the page loads the only thing you can do is insert a records. I have a bound dropdownlist that ...
0
votes
0answers
134 views

jQuery Validation Plugin Remote

I'm using jQuery Vadilation plugin (http://docs.jquery.com/Plugins/Validation) combining with my own vadilation if given URL works. This is the jQuery code: $(document).ready(function(){ ...
1
vote
1answer
135 views

Using built in validation for records created on client

I have an ASP.NET MVC4 application where I'm allowing users to add 1 to many records on the client using javascript templates. It's working fine and using the right naming convention, the model ...
0
votes
3answers
273 views

How to: dynamic jQuery, pick at least one, validation with mask

I have a dynamic list of textboxes to capture one or more currency amounts. I want at least one of the textboxes to have a valid currency amount. I can't get it to quite work. I would really ...
0
votes
2answers
102 views

styledSelect and jQuery Validation

I'm using styledselect for my dropdowns... http://code.google.com/p/lnet/wiki/jQueryStyledSelectOverview I'm also using the jQuery validation plugin ...
0
votes
3answers
3k views

Contact Form Validation using Jquery

I Want to validate a for with jquery form validation. So i include the following coads. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2 ...
7
votes
1answer
225 views

Multipart jQuery validation

I'm trying to validate different parts of a form separately. Unfortunately, the form is generated by a CMS, so I'm limited in my manipulation. I've tried creating an array of validate objects, using ...
2
votes
2answers
264 views

Either or Validation in Razor MVC3

I have a razor view with a couple of textboxes. I want want to make it so that you either choose one of the textboxes or 3 of the others and you can't submit unless you enter in text in at least ...
0
votes
2answers
2k views

How to do number validation with jquery.validate.js?

I'm using the jQuery Validate plugin and want to validate an input field using a fixed amount of numbers with a dash in the middle like so: XXXXXX-XXXX. I know how to validate numbers but how can I ...
0
votes
1answer
309 views

How to reset qTip2 validation?

I have a form in an ASP.Net MVC project on which I am using qTip2 to display validation erros. On that form, I also have text fields that are activated/deacivated depending on choices made with radio ...
0
votes
4answers
334 views

how to validate radio[required] via jquery

ı have 10 group of radio. each group have 2 or 3 or more radio it doesnt matter. you need to select at least 1 radio from each group. when you submit form it must check and return error if any of ...
0
votes
1answer
45 views

Jquery Validation for Mobile

Here i have HTML: <form id="referalForm" action="google.com"> <label>Referring patient:</label> <input type="text" ame="txtPname" id="fullname" ...
0
votes
0answers
342 views

jQuery validate HTML table on the fly

I am using JavaScript to generate HTML tables dynamically which is based on users' inputs. However, I also need to validate the form before submission. I am confused of how to use a loop to validate ...
0
votes
2answers
233 views

Displaying jquery validation message on Label for input in MVC razor

I am attempting to get jquery validation for MVC razor up and working. I did this before in MVC2 but I need to figure out how to get this working using LabelFor(DateOfBirth => Model.DateOfBirth)... ...
0
votes
1answer
198 views

jQuery Validate layout issue

I am using jQuery Validate to validate my form. I have been hard coding the error labels and using Validate to show/hide the labels. I've been hard coding them because I needed to override the default ...
0
votes
1answer
393 views

pos absolute jquery validationengine v2.5.5 custom error messages not working

So apparently pos absolute has provided a method for you to display custom error messages with his jquery validation engine script but I can't get it to work. According to his documentation at ...
0
votes
1answer
791 views

Set regex for decimal number with jquery validator plugin

I use jquery validator plugin to validate my form. In form exists currency field, which needs the value, that appropriate to this regexp ^\d{1,9}(\.\d{1,2})?$. Below is my js code snippet. ...
1
vote
1answer
990 views

Open accordion panel on validation error

I am using jQuery accordion to split my forms into several panels and jQquery validation to check the required fields. It works great to show errors in validated fields as long as they are in the open ...
0
votes
3answers
2k views

radiobuttonlist with jquery form validation

I have a radiobuttonlist like this and i am trying to make this a required field and am using form validation(jquery validation plugin). <asp:RadioButtonList ID="PlateType1" ...
0
votes
0answers
732 views

How to validate radio buttons, selects, and checkboxes on iPad

JSFiddle demonstrating the problem... http://jsfiddle.net/9Lzj6/2/ I am using the jQuery Validation Plugin http://docs.jquery.com/Plugins/Validation && ...
3
votes
2answers
3k views

Dynamically add validation rules

I have a plugin which generically handle the creation of a jQuery dialog used for CRUD operations. The markup of the form that is added to the dialog is available externally of the plugin code and the ...
0
votes
1answer
374 views

Validate form with hidden fields

in my page there are few hidden field which are filled with the correct value from a script. These fields are validated server side against code injection and others malicius attacks but I'd like to ...
-2
votes
2answers
561 views

jquery validation, submit button not working in php

I click the button and nothing happens. If I take out the validation code, then clicking the button works and it falls back to the PHP validation that I have implemented. I coded up the jquery ...

1 2 3 4