How can I set a event/function to call when “Done” is pressed on the keyboard?
I am trying to have an function to be called as soon as the user is finished typing an input and “Done” is pressed. Does Ionic have a quick fix for this?
How can I set a event/function to call when “Done” is pressed on the keyboard?
I am trying to have an function to be called as soon as the user is finished typing an input and “Done” is pressed. Does Ionic have a quick fix for this?
But a form around your input and add ngSubmit to it https://docs.angularjs.org/api/ng/directive/ngSubmit
That did the trick. Thank you.