I'm working with Infragistics.Win.UltraWinGrid.UltraCombo showing multiple columns.I need to run code but only when the user interacts, when the user click on an item in the list or UltraCombo.The event RowSelect, has some way to configure it to only be launched when you change a list item from the interface? (not to assign a value to combo for code)What event is triggered by selecting an item from the UltraCombo list?Thank you
A number of events fire when you select an item:
RowSelected
ValueChanged
TextChanged
Yes, but as I said before, how can I configure them to not launch when you modify a combo by code?Only launch when the user selects from the list. (Similar to the SelectionChanged event the UltraWinGrid.UltraCombo UltraWinEditor but in the UltraWinGrid.UltraCombo)
Thank you
Hi,
There's no property to make the events only fire in some cases and not others.
But you could use a flag to skip the code in the event whenever you are setting the selected item in code.
Or, you could use the EventManager to disable the event before you set the selected item and then re-enable the event handler afterward.