What is the "return" keyboard event?

Hi,

I am trying to find in documentation how to use keyboard event, but it seems there is only “open” and "close"
http://ionicframework.com/docs/v2/api/util/Keyboard/

The “return” button in my app just don’t do anything. Why?

Thanks,

Stéphane.

You could use

To bind to enter/return key.

1 Like

I tried to get value from e.key for numbers (ASCII values 48-57). But got undefined (expected value 0-9) and e.which gives the right result.

Is there any issue with ionic where KeyboardEvent object does not have a key variable?