
Hi all,
I have a component that is essentially a custom drop-down box. It takes a collection as an "items" input, and should return the item selected as a record
The component requires that there be two columns in the collection called "Text" and "ID" - the value to display and another value for programming purposes, respectively. I resolve this by duplicating two columns and naming them "Text" and "ID"
The "Selected" output is returned by taking the "ThisItem" property of the embedded gallery, and returning it
The issue is that the "Selected" output only returns the columns "Text" and "ID", but not any of the actual columns from the data source, which in this case is an SQL database.
Items input of component
Selected output available columns
Hope that all made sense
Thanks!