06-14-2021, 06:13 AM
(This post was last modified: 06-14-2021, 06:13 AM by Alexandre Machado.)
KeyPress event is only triggered by printable characters (this is part of the DOM specification), so several keys (including Backspace and delete) won't trigger this event. I suggest you try OnAsyncKeyDown event which will work correctly.
using EventParams.Values['which'] you will get:
Backspace: 8
Delete: 46
using EventParams.Values['which'] you will get:
Backspace: 8
Delete: 46

