Hi All,
My app has 3 dropdowns and usually I have to send the data to be changed in 4 different places.
So, I created a gallery where I can fill up fields with text and selected items through dropdown.
As you see in the screenshot attached, there is a plus "+" button and when clicked, a new item of the gallery is created to be filled up.
My goal is to get the dropdown values to the new gallery item as the text fields are already coming through.
See my code below for the plus "+" button:
OnSelect
Collect(
DetailCollection,
{
Id: Text(Last(DetailCollection).Id + 1),
Sitename:Sitename.SelectedText.Value,
Type: Type.SelectedText.Value,
Maker: Maker.Text,
Model: Model.Text,
Capacity: Capacity.SelectedText.Value,
Rrp: Rrp.Text,
Currency: Currency.Text,
Accidental: Accidental.Text,
Liquid: Liquid.Text,
TheftLoss: TheftLoss.Text,
Theft: Theft.Text
}
)
See screenshot bellow of the field:

I believe something is missing as the Text values are copied over, but not the dropdown values.
Any help is appreciated.
Kind regards,
Fernnado