Is there a way for a spinner to work similar to a .NET ComboBox works?
I need to be able to select the underlying 'companyid' from the selected dropdown item.
B4X:
With ComboBox1
.DataSource = Nothing
.DataSource = dt
.DisplayMember = "company"
.ValueMember = "companyid"
.SelectedIndex = -1
End With
I need to be able to select the underlying 'companyid' from the selected dropdown item.