I am loading partial views by calling the server preredendering the content on the server and dumping the returned html to the page. This is then displayed in a div on the page. The partial view contains all the functionality for this form including the javascript to make the ajax calls.
I can make everything work in this but the form validation that would come over automaticly if the partial view was written during the initial page load.
I am thinking that something has to get tied together. Perhaps some portion of the validation is only tied in on a full page load and not on the partial render. I just need to figure out the javascript call that needs to happen to have it work correctly.