Delete keypress

emaster

Member
Licensed User
I capture when a user makes a change to a textbox text. The keypress event does not pick up the detele key press. Is there a way around this?
 

Rioven

Active Member
Licensed User
Longtime User
I capture when a user makes a change to a textbox text. The keypress event does not pick up the detele key press. Is there a way around this?

Hi emaster,
Do you have delete button on your device? I have only backspace.

One workaround on detecting text change on textbox is to record old text once the textbox got focus then compare new text after textbox lost focus.

Regards,
 
Top