I have a RadDropDownList in a gridview, the Value Changed Event is raised only when I increase/ Decrease the value with the arrows and not when key pressed.
I partially resolved the problem by adding the following code to the Value Changed Event:
GridSpinEditor gseditor = sender as GridSpinEditor;
if (gseditor != null)
{
this.CurrentCell.Value = gseditor.Value;
}
When I press the backspace key the event is raised except if it the last digit.
Any solution?
Thanks,
Dror