I had some value on the UltraNumberidEditor and i tried to select it and hit the Delete key to remove the value, but the ValueChanged event is not hitting.
The editor has a mask({double:-3.1}), which only allows decimals value.
The windows textbox fires the TextChanging event, when the text is removed by pressing the delete key on keyboard.
Similarly, UltraNumericEditor don't trigger ValueChanged event when the value in the editor is removed by pressing the delete key.
Thank you.
Hello Toji,
Thank you for contacting our forums!
Pressing the delete key works fine during my test with a standalone UltraNumericEditor.
May I ask if you are embedding the UltraNumericEditor within a grid column or cell? If this is correct then you need to be using the events of the grid instead. This has been previously discussed here:
http://es.infragistics.com/community/forums/p/72000/364565.aspx#364565Let me know if you have any questions regarding this matter.
Mine was standalone UltraNumericEditor. Delete key will work, but highlight(select) whole value in the editor and hit the DELETE key on the keyboard. Then the ValueChanged event was not hitting.
I actually figured out the issue. By default standalone UltaNumbericEditor's property, Nullable is set to false, we need to set it to true, then only the ValueChanged event will hit.