Question

In the new version of Parsley.js 2.0.0 rc3 how do you enable validation for dynamically added inputs?

Before I had destroyed the validation then re-initialized validation. However my understanding is you shouldn't have to do this in the new version, not sure if that is correct or not.

Was it helpful?

Solution

Try $("form").parsley().reset();

OTHER TIPS

Well for now I have done the same thing as I did using version 1. After I add a new input I destroy and reset parsley on the form.

$("form").parsley().destroy();
$("form").parsley();

$('#fieldId').parsley('addConstraint', { required: true });

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top