Pregunta

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.

¿Fue útil?

Solución

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

Otros consejos

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

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top