Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
104 views

I have a web page that will receive 10k-row CSV data on which I have to call API to get more details after a successful ajax call I have to append all these 10k rows (5 columns - 4 input fields with ...
Aslam-Ep's user avatar
  • 151
-1 votes
2 answers
2k views

How to validate a filename in jQuery-Validation-Engine with no special characters allowed except for underscore (_)? I tried these regex: /^[a-zA-Z\d._]*$/ and /^[a-zA-Z0-9_]+$/ but no luck. The regex ...
mrrsb's user avatar
  • 681
0 votes
1 answer
71 views

I am trying to print an error message when email is taken Using Jqueryvalidation but when I enter email which is not taken, the error message won't go away. please help! html <form id="valid" ...
user9175903's user avatar
0 votes
2 answers
625 views

I'm using this code in mvc for email validation but after we typed @ of any text in textbox for example : abc@ after @ validation is not wokring and form is submit without validation error. if (!...
Zaheen's user avatar
  • 11
1 vote
1 answer
1k views

In a form with three checkboxes I need to validate at least one of them has been checked. The company I work for is using jQuery Validation Engine. I am testing with the latest version/release. As ...
ReynierPM's user avatar
  • 18.7k
1 vote
1 answer
670 views

One of the legacy applications where I work is using Inline Form Validation Engine 2.6.2 aka jQuery Validation Engine. I need to set a custom message for a default validator. Here is all I have tried ...
ReynierPM's user avatar
  • 18.7k
0 votes
0 answers
70 views

I have a form that the user fills out, then they press a "Review Fields" button. This button validates the fields by using jQuery Validation (https://jqueryvalidation.org/documentation/) and opens a ...
Adam Isaacs's user avatar
2 votes
1 answer
2k views

I'm having an issue with JQuery Validation inside a modal with tabs. On the Sign in Tab, when I click on the Login button the validation errors pop up as intended: PROBLEM 1 But on the New Account ...
ChosenJuan's user avatar
0 votes
0 answers
838 views

I am working on ruby on rails and using jquery validation in my application. In Employee Master new form email id uniqueness remote is working fine but in edit form email id uniqueness same remote i ...
Sidharth's user avatar
0 votes
2 answers
446 views

I have a form which uses validation engine, but the input element that uses jquery datepicker wont display the error message or even validate as a require item. Is there a way to make both work? If ...
Fernando Souza's user avatar
0 votes
1 answer
221 views

I am using jquery validation to validate a form. It works fine when it comes to validate simple variables or even and array variable but here is the thing: I need to validate an array of arrays. My ...
blas09's user avatar
  • 1
0 votes
1 answer
118 views

I am using jQuery validation to validate my form fields. I've two fields, named "comment" & "account name". The comment field has a validation method called required which is set to false whereas ...
Issaki's user avatar
  • 1,064
0 votes
0 answers
365 views

I am currently using jQuery validation plugin to validate my form fields. I've set a rule where the username field is not required, the account name field is required and the comments textarea field ...
Issaki's user avatar
  • 1,064
1 vote
1 answer
179 views

I am trying to validate my form. For example, when a user did not enter any value or white spaces, the jQuery validation plugin will detect the error and display an error message called, "please fill ...
XxS0ul678's user avatar
  • 137
0 votes
0 answers
245 views

I have created a dynamic html block. When you click on add more button generate three field name, from-date, to-date and i apple the validation on this field but it's not working. Dynamic post fields ...
Chintan's user avatar
  • 123
1 vote
2 answers
2k views

i have current_stock variable which is updated by ajax request everytime i clicked Edit button. after the ajax request success, it will popup a modal like this im using jQuery validation to validate ...
Mochamad Ramdanny Lukman's user avatar
2 votes
1 answer
903 views

I am trying to validate is email id exist or not, using remote in jquery validation, but its showing Object Not Found and error code is 404 in console. i think weather it is not taking url as route as ...
Ratnesh Jaiswal's user avatar
1 vote
1 answer
239 views

Some users a writing their messages in uppercase only, and I want to avoid that with JQuery Validation Engine. I have tried many many regex without any success. Here is the idea for a custom rule to ...
Jibeji's user avatar
  • 473
1 vote
1 answer
480 views

I've added custom validation on input type text and I am doing custom validation by checking event type: $.validator.addMethod("customVal", function (value, element, options) { if (event.type == "...
Amol D's user avatar
  • 31
0 votes
1 answer
79 views

I'm using plugin jQuery validation to handle invalid fields. So, I set defaults validator like this: $.validator.setDefaults({ errorElement: 'span', errorClass: 'help-block text-danger', ...
Mokhtar Tlili's user avatar
1 vote
0 answers
164 views

Please help me configure form. It is necessary that the message is not sent if the inputs are not full. And if everything correctly popped up the message of successful sending. mail.php <?php $...
Анна's user avatar
0 votes
1 answer
1k views

I am using jQuery validation engine to validate a form in my Laravel's project, it works perfect for all of the fields except input type file. Here is what I have tried: Form <form id="series-...
Amrinder Singh's user avatar
0 votes
1 answer
26 views

can you help me understand how to remove .checked class added with: success: function(label) { label.addClass("checked"); } when the input is not 'success
z_ve's user avatar
  • 1
2 votes
1 answer
509 views

How do you override the submit handler of a jQueryvalidation object with out overwriting all of the validation settings? form1.validate({ focusInvalid: false, // do not focus the last invalid ...
c_Reg_c_Lark's user avatar
0 votes
2 answers
341 views

I have an issue I can't seem to solve. First some context that may be relevant. I am building a MVC-like (I say "like" because I'm still learning how MVC works) php framework for my software. I want ...
SuperCatchyUsername's user avatar
0 votes
1 answer
2k views

How to use jquery validation engine in angular 2? I included jquery validation files in index.html file: <script src="http://localhost/2017/js2/jquery.validationEngine.js" type="text/javascript">...
user avatar
1 vote
1 answer
721 views

I am working on an MVC application and all of a sudden the jQuery validation stopped showing the red rectangle and other styles related to errors on controls. I spent about 2 hours and for the life of ...
CodingYoshi's user avatar
  • 27.3k
1 vote
0 answers
76 views

I'm working on an asp.net MVC application. As per our requirements we need to check whether inserted data already exists or not at runtime. And for implementing that facility I've used validation-...
Chirag's user avatar
  • 1,024
0 votes
0 answers
797 views

is there a way for me to override the message from Html.ValidationMessageFor. So when it is activated, it will display the new message ? I have tried to add this to my model: [Required(ErrorMessage =...
andrelange91's user avatar
  • 1,194
-3 votes
1 answer
446 views

I want to improve my forms with jQuery Validation Engine. For more accessibility, I want to put the error in a tag below the input tag. <input type="text" ... > <p class="error">Error ...
Fridez Lucas's user avatar
1 vote
0 answers
55 views

I am getting the following error: This is my jQuery script: $('.email_afiliado').each(function(key, index) { $('#'+index.id).rules("add", { required: true, email: ...
Santiago Rivera Botero's user avatar
1 vote
1 answer
671 views

I have a Laravel 5.4 backend with validation rules all set up and working fine. I also implemented the jQuery Validation plugin for client side validation for a better experience and used it ...
seekay's user avatar
  • 2,503
0 votes
0 answers
341 views

i can't check validation for a kendo dropdownlist using jquery validation engine. if i click the submit button, which checking the validation inside the form's control. All fields validation is ok, ...
sebu's user avatar
  • 2,964
2 votes
1 answer
3k views

Validation Engine is returning false when no errors were detected and true when validation is unsuccessful, which is the opposite of what I would expect. The weird part is that the tooltips are ...
Alexander Flenniken's user avatar
-1 votes
1 answer
1k views

I have a form with multiple tabs using bootstrap tabs. Html Tabs structure like:- <div class="tabs-container"> <ul class="nav nav-tabs"> <li class="active"><a data-toggle="...
Narayan's user avatar
  • 1,668
0 votes
4 answers
402 views

I'm a newbie. Just coded a simple loan approval application using Javascript with Jquery and Jquery Validation plugins. I'm getting a SyntaxError. - I've matched the beginning and end parens, curly ...
TPop's user avatar
  • 61
2 votes
1 answer
2k views

I am using Jquery custom validation for no space. jQuery.validator.addMethod("noSpace", function(value, element) { return value.indexOf(" ") < 0 ; }); And its working fine. But it also ...
Hiten's user avatar
  • 877
0 votes
0 answers
689 views

I am supposed to validate comma separated email addresses and avoid invalid patterns like [email protected], [email protected], [email protected], [email protected], [email protected], email@...
Affirmative's user avatar
0 votes
2 answers
1k views

I am trying to debug an old application and I created a separate html to debug jquery validation engine behavior. I am getting this error: jquery.validationEngine.js:28 Uncaught TypeError: $(...).on ...
Karim Mtl's user avatar
  • 1,253
1 vote
1 answer
4k views

I have a simple form I want to know if the form is at a valid state or not. This project is using jQuery Validation Engine I am using the same version 2.6.2 According to the docs it supports a ...
Genocide_Hoax's user avatar
0 votes
1 answer
363 views

I use jQuery Validation Engine for my form validation here is link for demo : https://github.com/posabsolute/jQuery-Validation-Engine I have one checkbox and four textboxes in ASP.NET, I want to ...
Rex Jones's user avatar
1 vote
1 answer
1k views

I tried running the code from the author to make chosen.js work with jquery validation engine Here is the authors code I used the same code to test, but it is not working This is my code jQuery(...
Nishant123's user avatar
  • 1,966
1 vote
1 answer
443 views

I need a regex to validate a password input by the user through JS in an online registration form. The criteria for the password is the following: has to be longer than 8 characters has to include ...
user1809790's user avatar
  • 1,389
1 vote
1 answer
471 views

I have two select boxes each with some values I want to validate for condition that, if value Value 1 is greater than value in Value 2 then the error prompt should show and the form should NOT submit....
Nishant123's user avatar
  • 1,966
0 votes
1 answer
262 views

I have a working form. However, in order to do some JQuery stuff (hide and show a div), I need to add an id tag to the form. When I add the id, the jQuery is working as expected, but my page stops ...
mmmbaileys's user avatar
  • 1,263
10 votes
2 answers
3k views

I am trying to add jquery-validation to a project in visual studio 2015. When I add "jquery-validation" to bower.json I see that the jquery-validation folder is added to wwwroot/lib/ but there is no ...
user1282345's user avatar
1 vote
1 answer
1k views

I have 4 steps to perform and validate with each bootstrap tab. I need to validate the required fields in the first step and when the fields are valid and I clicked the "Next" button I can go to the ...
natsu1627's user avatar
5 votes
2 answers
9k views

UPDATE 2: I figured out that the title of the input was for some reason being displayed as an error message, I used ignoreTitle: true to make sure he title was not being displayed as an error message....
ChosenJuan's user avatar
0 votes
1 answer
2k views

I have a form with 3 bootstrap tabs in it. Client Validation works correctly when the tab where the validation error occurs is open and submit button is clicked. However, when i switch to a tab with ...
JustLearning's user avatar
  • 3,342
0 votes
0 answers
46 views

I have 2 text boxes for entering money range they should have: txtFromAnnualIncome minimum = 0 maximum = 99999999998 txtToAnnualIncome minimum = 1 maximum = 99999999999 I want to check if ...
Abhilash Srivastava's user avatar

1
2 3 4 5
7