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
755
KeyDown event of default NumericEditor not fired
posted

I use the WebDataGrid.InitializeDefaultEditors.

In my event handler I have written the following code:

void OnInitializeDefaultEditors(object sender, DefaultEditorsEventArgs e)
{
   e.NumericEditor.Buttons.SpinOnArrowKeys = false;
   e.NumericEditor.ClientEvents.KeyDown = "j_onNumericEditorKeyDown";
}

The SpinOnArrowKeys is succesfully disabled, but the KeyDown event is not fired.

Parents Reply Children
No Data