Domanda

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.

È stato utile?

Soluzione

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

Altri suggerimenti

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 });

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top