Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2334
SelectionChangeCommited event
posted
I have a couple questions regarding the event order in the UltraComboEditor. The AutoCompleteMode of the combo editor is SuggestAppend.

  1. Select a value in the drop down by mouse click.
    • ValueChanged, SelectionChanged, SelectionChangeCommited
  2. Select a value in the drop down by arrows then Enter button.
    • ValueChanged, SelectionChanged, SelectionChangeCommited
  3. Select a value by typing then click Enter button.
    • ValueChanged, SelectionChanged, SelectionChangeCommited
  4. Select a value by typing then Tab out of combo editor.
    • ValueChanged (for each char typed), Selection Changed
  5. Select a value by setting the SelectedIndex or Value property at runtime.
    • ValueChanged, SelectionChanged


I was expecting the SelectionChangeCommited event to fire last in each case. Why does the SelectionChangeCommited event not fire in cases 4 and 5? Is this a bug?

Thanks.