Hello,
I have a module which contains a multiselectListBox, a listView, and a submit button. Within the listview are various components, such as a single select and a checkbox. The source of the listView is
{{ formData2.value.filter(item => item.category_id !== undefined) }}
where formData2 is a global variable.
Within the module, the listView displays perfectly and everything functions just as it should.
However, when I use this module in one of my apps, the multiselectListBox and submit button appear, but I can't see anything to do with the listView. I suppose this means either 1) the listView itself is not displaying or 2) the listView is there but it's not displaying any of the components within it (e.g. the single select, the checkbox etc.).
Screenshot of the module multiselectListBox and listView:
Screenshot of the module in the app (multiselectListBox and no listView):
I've ensured the module inputs are exactly the same in both the module and the app to troubleshoot, and I still run into this issue where the module displays the listView / components within the listView but the app does not.
I'm confused as to why this would occur? Why would a module behave differently when used within an app?