Android Question B4XCombobox open dropdown on same selection

Mark Stuart

Active Member
Licensed User
Longtime User
Hi all,
Using this combobox, I select an item and it displays, and the _SelectedIndexChanged event fires - good so far.
Selecting the same item again, the _SelectedIndexChanged does not fire - understandable.
I need it to fire always when any item is selected, even the same one.
How can I do that as I see the B4XCombobox has only one event?

Thanx
Mark Stuart
 

vinpolins

Member
Try to get the spinner of that combobox: Dim Spinner1 As Spinner = B4XComboBox.cmbBox
Then process the ItemClick event of it: Sub Spinner1_ItemClick (Position As Int, Value As Object)

(just an idea, not tested yet)
 
Upvote 0
Top