Hi Everyone,
I have a list in SharePoint called as "ItemList". One of its columns named "State" is Choice type and has 2 values: Active and Inactive. The other column is Name of type string.
I have connected this list to a ComboBox inside the Gallery(It has a TextInput and a ComboBox) and populated the ComboBox using its Items property as follows:
Choices('ItemList'.State)
The SP list contains an item( Name: Pump, State: Active).
The Gallery displays this item using TextInput and the ComboBox. The TextInput rightly displays as "Pump", whereas the ComboBox doesn't display the selected item automatically. (In this case, it should display "Active" as the Pump in the SP list has the State value as Active.
So can anyone please let me know which property and how to set such that Active value gets displayed as the selected value in the ComboBox for this item?