Solved
Using Rules Editor to limit number of attachments
I recently noticed that you can either select one or multiple attachments for an adaptive form. I would l ike to limit the number of attachments to 4. How can I do that?
I recently noticed that you can either select one or multiple attachments for an adaptive form. I would l ike to limit the number of attachments to 4. How can I do that?
Simply use the following script in the validate event of the file attachment field. it works.
if(this.value.split("\n").length < 5)
{
true;
}
else
{false;}

Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.