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.
Solved! Go to Solution.
Views
Replies
Total Likes
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.
Have you looked through all of the docs on this use case?
AEM 6.0 Forms Help | Creating forms with repeatable sections
Views
Replies
Total Likes
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.
One additional side note. If you are creating new forms, use Adaptive Forms.
Views
Replies
Total Likes
Views
Likes
Replies