Hi I am loading a form and using unobtrusive clientside validation extended with the foolproof nuget package. This all works well but now I am trying to load parts of the form with ajax.
Once these parts have been loaded in using ajax, the validation isn't bound to the new fields.
For the normal validation, I am able to rebind it using
$.validator.unobtrusive.parse('#form');
Is there a similar method for rebinding them foolproof validation?