Where is the right version of MicrosoftMvcJQueryValidation.js for MVC 2 beta 2?

邮差的信 提交于 2019-12-18 16:57:44

问题


MicrosoftMvcJQueryValidation.js is used by ASP.NET MVC 2 for client side validation.

Having problems with this file just not working properly and wondering if I have the wrong version.

The version I am using came from the source for futures.

 MicrosoftMvcJQueryValidation.js
 5,626 bytes
 11/17/09 10:43:12am

There are two reasons i think i have the wrong version :

1) I actually have to call this code to get the validation routine working at all. This is because the default client validation function now embedded into FormContext.cs is Sys.Mvc.FormValidation.enableClientValidation .

 ViewContext.FormContext.ClientValidationFunction = "EnableClientValidation";

2) There is some code from jquery.validate.js which does the followin :

  this.settings.errorPlacement
    ? this.settings.errorPlacement(label, $(element) )
    : label.insertAfter(element);

This calls into this function in MicrosoftMvcJQueryValidation.js :

 errorPlacement: function(error, element) {
        var messageSpan = fieldToMessageMappings[element.attr("name")];
        $(messageSpan).empty();
        $(messageSpan).removeClass("field-validation-valid");
        $(messageSpan).addClass("field-validation-error");
        error.removeClass("input-validation-error");
        error.attr("_for_validation_message", messageSpan);
        error.appendTo(messageSpan);
    },

The problem is that element has been wrapped by jQuery.validate with the jQuery $(element) expression.

Therefore element.attr("name") is undefined, but element[0].attr("name") is valid.

I've taken MicrosoftMvcJQueryValidation.js from the futures download on Microsoft's site. `

I cant find any other MicrosoftMvcJQueryValidation version - but I'm sure there must be one. Can anyone help?


回答1:


As of Dec 17, 2009 the latest version of MicrosoftMvcJQueryValidation.js is available in the futures download project.

Be careful to include MicrosoftMvcJQueryValidation.js and NOT the similarly named MicrosoftMvcValidation.js.



来源:https://stackoverflow.com/questions/1878076/where-is-the-right-version-of-microsoftmvcjqueryvalidation-js-for-mvc-2-beta-2

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!