Guest User

Untitled

a guest
Feb 22nd, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <ion-input type="text" placeholder="name" right (keyup.enter)="nextfiled()" ></ion-input>
  2.  
  3. nextfiled(value: string): void {
  4. alert('Submitted value: ' + value);
  5. }
  6.  
  7. eventHandler(keypress) {
  8. console.log(keypress);
  9. if(keypress == 13) {
  10. //run code
  11. }
  12. }
Add Comment
Please, Sign In to add comment