Hi wonderful community.
I have built a component that contains the following (among other things):
- A gallery
- In the gallery I have a checkbox. When you check the box for an item in the gallery, the item is added to a collection using Collect(colSelectedItems,ThisItem.Value).
- A label that shows all the items for which the checkbox was checked, using Concat(colSelectedItems,Value,", ").
That works as it should, across multiple apps.
The problem is that when I use the component in an app, I cannot reference the collection colSelectedItems that is created by the component. It doesn't exist / is unknown within the app, even though the label in the component correctly displays all the selected items. I've tried creating a custom table output property, but I can't set that to colSelectedItems, either.
Please please tell me that it's possible to reference the collection outside of the component 🙂 I think I'll have a small breakdown if it turns out that it's just not possible for some reason.