i am using jquery's unobtrusive validation plugin in with asp.net mvc. the problem is that all the fields that are rendered server side gets validated with this scheme but if i dynamically add a field in the form using javascript it is not validated despite adding html-5 data-* attributes to the field. can anyone guide me in right direction on how i can achieve this goal
thanks
adeel
| |||
|
feedback
|
|
Finally, i had to do what i wanted to avoid: digging into jquery files. For above example to work i had to change one line
$.validator.unobtrusive.parse internally calls parseElement method but each time it sends isSKip parameter to true so with this value
this code in jquery.unobtrusive.js does not attach validation to the element and we find only validation data of inputs that were initially present on the page. Note Darin's answer above is correct and you can find on the blog he referred that many people have solved problem using xhalent's code (posted by darin). why it did not work is beyond my understanding. Moreover, you can find plenty of posts that tell you that just calling
is enough for dynamically loaded content to be validated | |||
|
feedback
|
|
Here's a blog post you may find useful and that should put you on the right track. Extension method taken from there:
and then:
Updated to add fix referenced in blog post comments, otherwise js errors occur. | |||||||
feedback
|