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?
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)