0
votes
2answers
23 views

Trigger jQuery form validation only if form has already been submitted?

Unobtrusive validation is based on the idea that you don't do form validation until the form has been submitted by the user; once that's happened, if something is invalid on the form, then each field ...
0
votes
3answers
47 views

JQuery Validator - Success function not being called on valid submission

I am using JQuery validator from: http://bassistance.de/jquery-plugins/jquery-plugin-validation/ I have written the JQuery that I need which validates correctly however the last part of my submit ...
-1
votes
1answer
14 views

Validate multiple select list

I've to validate a form like this with jquery validate plugin: <form class="myform" <select name="Input" id="input1"> <option value="DO0" opt_numAdults="2" opt_numChilds="0" ...
0
votes
0answers
29 views

On editing form shows error but on submit it validates, with error

I'm creating a webapp so a user can add a schedule for a employee for example. This project is made in MVC 4 but for this particular part I need jquery and jquery validation. When entering data into ...
0
votes
0answers
44 views

Jquery validation, calendar with textfields to be validated

I'm creating a webapp so people can add the workingschedule for several weeks. I created a weekcalendar with a table and every cell contains a textbox. HTML example <form id="extension" ...
1
vote
2answers
62 views

jQuery Validator Does Not Validate Input File Type

I've written a upload form and I want users to be able to upload only images. I've decided to use jQuery validator in order to make sure that users cannot send an empty form an can only upload images. ...
0
votes
2answers
178 views

jQuery validation - Textbox requires data if checkbox is checked

I have a checkbox - HasRaffle that will require a textbox - RaffleItem to contain data if HasRaffle is checked. How would I do this? I've never done my own jQuery validations before. This is what I ...
-1
votes
1answer
53 views

Htm.DropdownFor validation issue

I'm working on a MVC4 project and I'm having some strange behavior the jQuery validation is checking the text in the dropdown instead of the value: // field in model [Required] ...
0
votes
1answer
99 views

Jquery Validation on Dom not displaying message

I stumbled upon some code that has jQuery validation which is triggered after an ajax call that adds items to the DOM. The validation is working but the message is missing. just the field is ...
0
votes
1answer
54 views

JQuery Validate dynamically change ignore rule

I have a simple validate block like this: $("#myForm").validate({ ignore: ":hidden" }); When the user clicks a certain button, I would like to change that ignore rule to ignore: [] , then ...
0
votes
1answer
33 views

modifying ModelState on the client

So here's the problem: I have a form and a property adorned with [RequiredAttribute] altough initialy it's hidden on the form. There's a checkbox. When it's clicked it shows the element. So I wanted ...
0
votes
1answer
181 views

How do I successfully apply jquery validation rules to a jQuery autocomplete “input” field?

How do I successfully apply jquery validation rules to a jQuery autocomplete "input" field? To further explain, in the example, below: jquery validation works as expected for the "state" input ...
0
votes
3answers
60 views

Why HtmlHelper would skip validation attributes

Why @Html.TextBoxFor and other helpers would skip jquery.validation attributes and create elements without those? Am I missing some references or something? It's MVC 3.0 project. If I add them ...
1
vote
1answer
127 views

jQuery validation addmethod - how to return defferent language messages?

I have a custom method for bassistance jquery validation plugin that returns a message but the problem is that I would like to return default plugin message in different languages by simply adding the ...
0
votes
1answer
68 views

Why does jQuery validate returning 1 for true on a non-async remote request, and how do I fix it?

I'm using the jQuery.validate library to check if a form field matches an array of data. Here's the documentation for the remote method. When it returns true, jQuery.validate displays a 1 in an ...
1
vote
0answers
480 views

jquery validation error in Asp.net MVC - unable to get value of property 'call' : object is null or undefined

I'm trying to do some validation checks on the client side but my ASP.NET MVC application fails even before opening the index page. I get the error Microsoft Jscript runtime error: unable to get value ...
0
votes
1answer
126 views

JQuery validation plugin error placement does not work

I validate a form with the JQuery validator plugin. However, I want to place the error output at a specific place. I tried the Error Placement from the Validator documentation <div ...
0
votes
1answer
456 views

jQuery validate() MVC 4 Uncaught Type Error Object [object Object] has no method 'validate'

I'm making a a MVC 4 application. I'm trying to apply some client side validation using jQuery validate. I keep receiving "Uncaught Type Error: Object [Object object] has no method 'validate'". I've ...
0
votes
3answers
108 views

jquery validation plugin to check dates but not their placeholder text

I have inputs with placeholder values such as: <input type="text" name="mydate" value="yyyy-mm-dd"> How can I change my rule to execute only if the value is not "yyyy-mm-dd" ? ...
0
votes
1answer
362 views

Jquery Validation has prevented my contact form from loading confirmation page even when all fields are valid

I am new to jquery and php and have been having difficulties trying to add jquery validation followed by php server-side validation to a contact form on a website I am working on. I have Jquery ...
0
votes
1answer
277 views

DateTime format according to the culture in MVC

I have an MVC view where I list a dateTime type column named "CreatedOn", the values are formatted like this: 'DD/MM/YYYY HH:MM:SS', When I click on edit link to modify a value I obtain the same ...
0
votes
1answer
210 views

jquery validation plugin: validating hidden input, skips required input text

I'm trying to validate a form, that has both hidden and not hidden input. I added in the form validation settings the line ignore: "" to validate the hidden input, but doing so, it doesn't validate ...
0
votes
1answer
121 views

jquery.validate focusCleanup on only some elements

So I need to use focusCleanup on only one or two elements of a form and not on each element. Is there a way to apply the foucsCleanup in jquery.validate ...
-2
votes
2answers
213 views

Using custom CSS with jQuery validation? [closed]

How can I use a custom CSS class for the error messages? I'd rather not style the standard label.error. I want to use a CSS class I already have.
-1
votes
1answer
69 views

URL validation using regular expression

I have requirement to validate the URL based on the regular expression. The question is, Is it possible to have url like http://www.google.12.com? I have used the jquery plugin and it validates the ...
1
vote
1answer
52 views

How to check two different webforms having same value of textboxes

aspx TextBox1.Text World.aspx TextBox1.Text I want the pages Hello.aspx and World.aspx having same value of validation please help me anybody have the idea about this
0
votes
3answers
89 views

jquery dependend form elements validation

I am using a very long expandable form. For example if question 1 is answered with "Yes", question 1.1 will show and so on. This works well with the following (simple) jquery script: Selectmenu ...
3
votes
1answer
173 views

jQuery validation fails when using .element(element) within custom method

i need help... in short: I have a custom rule that should check some dependencies by validating the other inputs this one depends on. When I do stuff like that validation for all other inputs seems to ...
1
vote
3answers
84 views

jQuery validation plugin not functioning

I can't seem to figure out what the issue is here. I've tried putting my js in my head, below my form, above my form, etc. None of them seem to do anything. It just submits the page without even ...
0
votes
2answers
441 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
2answers
126 views

jquery validate: highlight a label shared between two elements

I have two elements that share a label. I need to add/remove a CSS class on it as the two elements are being validated. If one or both are invalid - label needs to turn red. If both are valid - ...
0
votes
1answer
128 views

Using JQuery Validate remote method with array

I need to register more users in the same screen, so I use a form like this: Username*<input name="username[]" /> Password*<input name="password[]" /> Username*<input ...
0
votes
0answers
87 views

How to setup errorPlacement after a form has been loaded via Ajax call?

I am using custom error placement for unobtrusive validation on my forms and this is how I initialize it: function initializeValidationIcons(elm) { ...
0
votes
2answers
127 views

file input field validation

I tried this, Its not working. I want to do following things: While clicking on submit button the profilePic should be validate. profilePic must not be null and it must accept only one of the ...
0
votes
1answer
432 views

Use Jquery validation for validating dropdown selected item

I'm using Mvc web application, and I have a simple dropdown in my page. my dropdown has 3 items and I want to check selected item every time it changes. Currently I'm writing a JavaScript function to ...
0
votes
1answer
111 views

JQuery Validate Writing Custom Function

I have a form that I'm using jquery's validator to validate. If they entered Vendor into the registration code then they HAVE TO select vendor from the drop down menu. But ONLY for vendor, if they ...
2
votes
1answer
284 views

Client validate jquery plugin doesn't work

I use for client validation the jquery plugin on the path assets\javascripts\jquery.validate.js (rails 3.2). But it doesn't work. My form: update_name_phone_city_user_registration_path, ...
5
votes
3answers
2k views

JQuery Validator Plugin Phone Validation

I'm having issues with the jquery validator validating phone numbers. So in a form where I have an input for phone number, I use jquery's additional methods to validate the phone. Here's the code: ...
0
votes
1answer
95 views

JQuery Validate Plugin Error Class

I want to edit the error message outside of the validate function. So I have a simple password recovery form. Here's the html: <div style="position:relative; left:40%;" class="pass_recovery"> ...
1
vote
0answers
196 views

Need help writing a validation method to check if a video URL is allowed and if the video on the site actually exists using oEmbed

I'm having a difficult time trying to add a validator method to check not only if a URL is allowed (from YouTube or Vimeo using a regex string), but also if the video actually exists on the sites and ...
2
votes
1answer
803 views

Dynamic jQuery Validate error messages with AddMethod based on the element

Let's say I have a custom AddMethod to jQuery Validate like: $.validator.addMethod('min-length', function (val, element) { // do stuff // the error message here needs to be dynamic }, 'The field ...
1
vote
1answer
276 views

jQuery Validate - Multiple Rules per Element?

I have a form which I would like to validate certain fields as being required as well as being digits. I'm having trouble figuring out how to apply both rules to said fields. Currently here is how I ...
0
votes
0answers
127 views

object doesnt support property or method validate In IE9

I'm using jquery validate js plugin and on all browsers works great but on IE 9 I get this error. Webpage error details Message: Object doesn't support property or method 'validate' Line: ...
0
votes
2answers
169 views

dropdownlistfor + jquery validation

I am creating an application in asp .net mvc3 c#. I create a dropdown list but I am unable to do a client side validation using Jquery. I have looked at numerous articles related to it and know that ...
0
votes
1answer
105 views

jquery validate - make either of 2 fields required on submit

I'm working with jQuery validate to validate my forms, but i'd like to know if it's possible to make either of 2 fields required. I only know ways to make 1 required, but either of them should be ...
0
votes
0answers
120 views

jquery validation with multiple forms

I have 3 separate forms on my web page (all forms have a unique input fields) <form id="moneyForm"> <form id="profile"> <form id="get_ahelp"> And for every form I create a ...
4
votes
2answers
668 views

Show div if validation fails

I want this div to show if the form validation is unsuccessful. <div class="alert"> <strong>Warning!</strong> @Html.ValidationSummary(false, "Fix these errors:") </div> I ...
0
votes
1answer
559 views

MVC Validation - How to add the unobtrusive data-val tags

I have some simple server side validation that I put together to validate 6 different sections of my form. I had to do it manually because not even the custom choices (foolproof, fluent, etc) had an ...
1
vote
1answer
244 views

Writing a custom validation rule

I'm needing to write my own javascript rules to validate a form. I have a field named code and I need a special validation to it: This field have exactly 13 positions. The first and second are ...
-1
votes
2answers
276 views

JQuery Validation Plugin EqualTo

So here's a working demo of my problem: bin. First click on the button for the content to be viewable. Next, navigate to the second tab, passwords. Here is where the problem lies. The EqualTo call in ...

1 2 3 4 5 9