onChangeCommitted
Fires when the user takes an action to unambiguously choose an item from the list.
Parameters
none
Property of
Combobox
Description
onChangeCommitted will fire in the following cases:
Left click on an item in the listbox (all styles) when the item is different from the current ComboBox value.
Press Enter with an item highlighted in the dropdown list (style 1 or 2) when the item is different from the current ComboBox value.
For style 0 or for style 1 or 2, with the dropdown list closed, press the Up Arrow, Down Arrow, PgUp, or PgDn keys.
Left click on the ComboBox button for a style 1 or 2 ComboBox when the dropdown list is open and the highlighted item in the dropdown list is different from the current ComboBox value.
onChangeCommitted() will not fire for a style 1 or 2 ComboBox when the dropdown list is open and the Up Arrow, Down Arrow, PgUp, or PgDn keys are pressed. (Note that this is different from the onChange() event which does fire in these cases).
onChangeCommitted() fires only after the ComboBox's value property has been updated with the selected value.
When the dropdown list closes, either onChangeCommitted will fire or onChangeCancel will fire, not both.