I have one View and in which there 3 partial views are rendering.
And there is one Save button on the parent view(Index,in which the partial views are rendering).This Save button is common for all of the partial views.
My problem is, i am not getting the way in which i can check is there any model validation is firing on any of the partial views while click on Save button.
I used below check on Save button click :-
var status = $('form').valid();
But its not checking the validations of all the partial views.Its just checking the validations in that particular partial view in which i am clicking the Save button.