What is the event to close WebEdit's keypad in mobile environment?

What is the event to close WebEdit's keypad in mobile environment?

Let's say you have 1 edit box.

After entering 123, the Done button will appear on the keypad as shown below.

When this Done button is pressed, 13 is passed to the KeyDown event.

Afterwards, how do I make these keypad buttons disappear?

The keypad stays there.

Try to call from the OnKeyDown event when 13 is pressed:

WebEdit.ElementHandle.blur;

(
based on technqiues described here:

)

1 Like

thank you!!