I’m using microsoftMvcJqueryValidation and I want to call my own client-side validation function for a particular field with the system so that it fires with the other auto generated client-side validation.
Is there a certain place I can call my function?
Thanks~!
It’s not exactly what you described, but below I create a new javascript function, attach it to jQuery validator, and tell it to run on inputs with the class “monthDay”:
You could do the same thing where you create a validation function and register it with $.validator. Then it’s just a matter of associating the validation function with whatever input types/classes you want. $.validator’s API offers various ways of doing this.
Additionally, this does work with the auto-wiring of validation using MicrosoftMvcJqueryValidation. In fact, it doesn’t make a difference if it is or not as you’re simply augmenting jQuery’s validator plugin, independent of how it’s invoked.