I am working on a AEM6.5 dialog multifield granite/ui/components/coral/foundation/form/multifield component. After adding 745 items to list and save.Dialog saves and reopens correctly. If I add one more item and save it. Reopening dialog does not show all items.(the number of items in dialog is less than 745.) and there is no add button. I need to add 50 more elements to the list. Is there any limit on number of item? if yes how can I achieve adding more items?
Solved! Go to Solution.
Views
Replies
Total Likes
Hi @vaps
Using multifield to configure a lot of data is not the best practice, AEM provides this feature but the whole point is to benefit the authoring experience. So if its a huge data, you may want to use an excel upload/groovy integration so that you can handle it via code. You may also use dashboards for this use case if it is feasible.
Hi @vaps
Not sure about maximum upper limit but may be worth to try it by setting max-item?
https://aemhints.com/2020/10/24/limit-multifield-aem65/
Regards,
Santosh
Hi @vaps
Using multifield to configure a lot of data is not the best practice, AEM provides this feature but the whole point is to benefit the authoring experience. So if its a huge data, you may want to use an excel upload/groovy integration so that you can handle it via code. You may also use dashboards for this use case if it is feasible.
I would suggest to upload a Json file containing all the data from the DAM assets and then configure the file path from the authoring dialog.
Then write a Script under models to read the json file and inject the data in an object and then render it via sightly.
Views
Replies
Total Likes