I have a form which is rendered using html.RenderAction in MVC3.
Outside of this I have a jquery template used with knockout. The model is rendered correctly into t
I have looked into the code of jQuery validate and I think it doesn't work for dynamically added forms (which what Knockout does).
Take a look at this > Jquery Validation Plugin, dynamic form validation
You need to call the validate() method in a an event handler registered using the jQuery live() method. The live method links to all the dynamically added elements as well.
Let me know if it works.