Hi Guys,
i have spent 3 to 4 hours now figuring out how i can extract the value of the Listbox i have created, this is not a multiple selection Listbox. Here are a few details:
* Listbox is to behave like a people picker. It's items properties is:
If(!IsBlank(TextInput1.Text), Office365Users.SearchUser({searchTerm:TextInput1.Text}).DisplayName)
* I have tried to transfer the value of the selected data via the OnSelect property of the listbox by trying to give that value to a variable and other available attributes for listbox5. it turns out it is returning a record or a table, something a normal TextInput box would not accomodate.
set(selectedData, listbox5.selecteditems.value)
* i tried using Text() but it's not working. I just need to get the selected value from the listbox and throw it to a variable or to a textinput control. or is there any other way to simplify a people picker listbox?
Thanks!