I'm using asp.net MVC3 and enjoying the ease in which I can create client-side validation.

I may be missing something obvious, but is there a way in which I can set a 'validates successfully' property for each field, similar to how I can set an error message? I've noticed a field-validation-valid class is applied but I can't find any way to set any specific detail.

Thanks in advance.

link|improve this question

Post your code please – Floradu88 Dec 24 '11 at 6:34
1  
@Floradu88 I didn't have any relevant code because I didn't know how to do it - the point of my question! Thanks anyway, Rick has actually now solved my problem. – Jonathan Dec 24 '11 at 6:36
feedback

1 Answer

up vote 4 down vote accepted

Overriding Unobtrusive Client Side Validation Settings in ASP.NET MVC 3

$(function() {
    var settngs = $.data($('form')[0], 'validator').settings;
    var oldErrorFunction = settngs.errorPlacement;
    var oldSucessFunction = settngs.success;
    settngs.errorPlacement = function (error, inputElement) {
        //Do something here
        oldErrorFunction(error, inputElement);
    }
    settngs.success = function (error) {
        //Do something here
        oldSucessFunction(error);
    }
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.