B4J Question ComboBox SelectedIndex

tremara1

Active Member
Licensed User
Longtime User
If I want to set the combo selected index to -1 to display prompt text I first have to set it to another value then set it to -1.
B4X:
cboSnip.SelectedIndex = -1
this displays last item


cboSnip.SelectedIndex = 0
cboSnip.SelectedIndex = -1
this works...
Have I missed something...
 
Top