How can I cancel an UltraNumericEditor value changed event?
You should use the BeforeExitEditMode instead, which will prevent the user from updating the value if it doesn't fall within your criteria. If it's being changed by something in your code, there is no event for this, but since it's in your code, you should be able to set a condition on whether or not to set the value.
-Matt
I tried this, but it doesn't behave as expected. It only fires when focus to the control is lost. So, if a user presses up three times, the control is dirty, the grid (to which it is managing criteria data) is either not updated (which looks wierd to the user), or refreshed with the new data, which is what I hope to prevent.
I need an event that fires when the control data changes that allows me to cancel the data change event.