Getting the Keyboard GO button to act like the app Submit was clicked

There are 2 requirements for this to work out of the box:

  1. you need to put the input fields inside a <form ng-submit="submitLogin()">. Notice the ng-submit directive to the

  2. you need to also include a <input> or <button> with type=submit. Be sure NOT to put a style with display:none on this button. If you want to hide it, use something like: <input type="submit" style="position: absolute; left: -9999px; width: 1px; height: 1px;"/>

13 Likes