Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

AEM repeatable subforms

Avatar

Level 1

Hello folks,

I'm working on the migration from ES2 to AEM and it seems that there are some problems mainly with the "Preview HTML5" TAB in AEM.

In designer AEM, when I tried to add a new instance of a repeatable subform (using addInstance function in a click event of a button), the new instance shows in preview PDF, it doesn't  in "Preview HTML5" .

It seems that is related to a refresh page problem.

Is there any idea that solve this issue?

Below my code:

form1.#subform[0].AddInstance.add::click - (JavaScript, both)

app.alert("count:"+_content.count);
_content.addInstance(true);
app.alert("count :"+_content.count);

(content is the name of the repeatable subform, containing a simple textField)

Thanks to everybody.

addInstane.PNG

1 Accepted Solution

Avatar

Correct answer by
Level 3

With the HTML5 version of the form, you need to have at least one instance of the subform that exists initially. Also, make your life much simpler by ensuring every element in your form has a proper name including subforms. You should have nothing that is "untitled". Keep in mind that in the browser "app" does not exist so you should try / catch that if you'd like to use it in web & pdf.

View solution in original post

3 Replies

Avatar

Correct answer by
Level 3

With the HTML5 version of the form, you need to have at least one instance of the subform that exists initially. Also, make your life much simpler by ensuring every element in your form has a proper name including subforms. You should have nothing that is "untitled". Keep in mind that in the browser "app" does not exist so you should try / catch that if you'd like to use it in web & pdf.

Avatar

Level 3

One additional side note. If you are creating new forms, use Adaptive Forms.