Questions tagged as 'jquery-validate'

1
answer

Jquery Validate with Jquery-Price-Format

How to leave the field mandatory when the value is 0.00 using jquery validate? Here is an example image: Asyoucanseetheimageabove,thepersondidnotenterthevalue,whenclickingtheacceptbutton,jqueryvalidatenormallyworksthefollowingimage: Nowth...
asked by 24.01.2017 / 21:14
1
answer

How to use required in select in form validated by jqBootstrapValidation? [closed]

I'm using the jqBootstrapValidation library to validate forms along with the required and data-validation-required-message properties (displays a custom error message). It's all working correctly but when I use a select...
asked by 28.10.2015 / 03:15
1
answer

How to validate input file with jquery validation?

I'm trying to validate a input of type file with Jquery Validation. Following the documentation, I do the following: My input: <input class="form-control" id="ImagemUpload" name="ImagemUpload" type="file" value=""> an...
asked by 21.11.2014 / 13:10
2
answers

How to apply jQuery Validate rules to multiple fields at once?

I have a form in ASP.NET and I'm using jQuery Validate to apply validation rules in the fields. All my fields have a common rule ( required: true ) but I could not find a way to apply this to all at once. $('#form1').validate({ r...
asked by 03.07.2014 / 16:04
1
answer

How to change validation text according to each type of validation in the Initial Date field

I have a code that does a validation with jquery validate and is 100% functional. When validation occurs, jQuery Validate always displays what is written in the title of input field. How do I have different validations for some...
asked by 26.05.2014 / 17:57
0
answers

Validate select with the jquery.validate plugin

I am not able to validate the select of the html with the jquery.validade plugin. The select to be validated would be the select class="uf" How would you validate this select with jquery.validate? I'm doing this $(document).read...
asked by 14.09.2018 / 15:19
1
answer

Uncaught TypeError: $ (...) .validate is not a function

I am using jquery validate and it was working normally, now it is returning the following error, I checked the references, I changed, but it continues with the same problem:    Uncaught TypeError: $ (...). Validate is not a function &l...
asked by 18.04.2018 / 14:46
1
answer

Uncaught TypeError: Can not set property 'focusInvalid' of undefined

I am making a validate to be used in conjunction with tinyMCE. On the Jquery Validate website, there is an example to do this. There it works. On my site is the message "Uncaught TypeError: Can not set property 'focusInvalid' of undefined". I've...
asked by 22.12.2017 / 15:54
0
answers

How to configure client validation in an ASP.NET MVC 2.0 application to recognize standard pt-BR

I am having difficulty configuring client-side validation of my application. I would like client validation, using jquery.validate.unobstrusive , to accept numbers and dates located in pt-BR. I've already done this in the startup...
asked by 08.12.2017 / 17:27
0
answers

JQuery.Validate - Block next step of the register if it does not have ok

I have the following code: $(document).ready(function(){ $('div[data-step]').hide(); $('div[data-step=1]').show(); $('.icon-cracha').hide(); $('#cadastre-se , #next , #btn-aluno , #btn-familiar').on('click',function(){...
asked by 17.12.2015 / 14:44