質問

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.

役に立ちましたか?

解決

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

他のヒント

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

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top