Hello i have a table that has two columns in sql, ID and Description
ID Description
1 Hello
2 Test
On my App, When user selects ID from dropdown , i would like my Textbox to display Hello and same thing with rest of the other column.
I tried doing dropdown1.selected.value in ID but this did not help.
I also tried doing On select property of dropdown to UpdateContext({itemsselected:Dropdown.Selected.Value}) and default of text to itemsselected. This only brings ID not the description.
Any help would be appreciated.
Thanks!