Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
1k views

Integrating qTip with MVC3 and jQuery Validation (errorPlacement)

I am working on a proyect with MVC3 and I am trying to integrate qTip2 with jQuery validation in order to show errors as floating tips. The problem I am having is that apparently calling ...
3
votes
2answers
1k views

Can you validate fieldsets individually using the jquery validation plugin from bassassistance?

I have a form that uses the validation plugin, but I need to validate a separate part of the form using slightly different criteria - most of the fields place the error in the next table cell, but for ...
2
votes
4answers
1k views

ASP.NET MVC3 JQuery Validate Plugin custom error Placement

I am trying to handle errorPlacement JQuery Validate plugin in ASP.NET MVC 3 Project with Unobtrusive validation provided by Microsoft. I am never able to hit the errorPlacement function and I am not ...
2
votes
1answer
294 views

jquery - how to use errorPlacement for a specific element?

I have checkbox and a text follows it, like; [checkbox] I agree If the checkbox is not clicked when submitting, the current way of showing the error msg I have is(I use errorElement:"div"); ...
1
vote
2answers
88 views

Jquery validate showerrors display name

I would like to add the name of the errors to my function so users know wich fields they have to check. This is my current function showErrors: function(errorMap, errorList) { var ...
1
vote
1answer
81 views

Jquery validate if/else errorplacement and plus placement in div

I have a form where the placement for radiobuttons is different then for the other elements in the form. I would like to keep this but also add the errors into a div. Is it possible to do this? ...
1
vote
1answer
391 views

JQ validation plugin - error labels ( errorPlacement ) outside the form, is it possible?

I'm using JQuery Validation Plugin. I wander if it's possible to place the error outside the FORM element which is being validated. I would like to place all the error labels at the bottom of the ...
1
vote
3answers
2k views

jQuery Validation Plugin Checkbox errorPlacement

I have a group of checkboxes that all have the same name. They all have different values. They are just part of a form. They do not make up the entire form. I want the checkboxes to display their ...
0
votes
0answers
23 views

jQuery validate difficulty understanding errorPlacement

Sorry for what seems like a frequent question but I just can't get errorPlacement to work. I have 2 individual groups of radio buttons and each has to have a radio button selected... that part works. ...
0
votes
1answer
19 views

Rewriting the jQuery validation errorPlacement output?

Ok, I've got a bit of a complicated task (at least for me)... I need to rewrite the default errorPlacement output: <label for="name" generated="true" class="error" style="display: inline;">This ...
0
votes
1answer
62 views

jQuery Plugin: : Validate/Validation - errorPlacement isn't executed… (Animation)

I'm using the newest jQuery library and the jquery validate plugin to validate some form: I have placed some form to validate in my footer. As soon as some error-messages are shown my footer should ...
0
votes
1answer
86 views

jQuery Validate - Immediate Error Removal Not Working

Alright, I have used jQuery Validate a ton of times, but have never had this problem... I have a simple form with inputs and and some radio buttons. Everything works fine, it displays the errors for ...
0
votes
1answer
537 views

Jquery validation error placement outside form with absolute positing of error message

I am trying to place the error message elements outside the FORM element which is being validated. I would like to place all the error labels at the bottom of the DOM and change them to absolute ...
0
votes
4answers
489 views

jquery errorPlacement

I have the following: $("#pmtForm").validate({ rules: { acct_name: "required", acct_type: "required", ...
0
votes
2answers
2k views

JQuery Validation errorPlacement Success vs Failure

I'm using jQuery Validation for a form, and I have to display a checkmark next to the input field (if the entry was correct), and the error message (example:"please enter at least 4 characters") below ...