@ionic/angular#IonInput TypeScript Examples

The following examples show how to use @ionic/angular#IonInput. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: editprofile.ts    From Elastos.Essentials.App with MIT License 6 votes vote down vote up
/**
   * Move text input focus to the given item
   */
  // TODO - REWORK
  maybeMoveFocus(element: IonInput, event: KeyboardEvent) {
    if (event.keyCode == 13) {
      // Return
      void element.setFocus();
    }
  }
Example #2
Source File: editprofile.ts    From Elastos.Essentials.App with MIT License 6 votes vote down vote up
// TODO - REWORK
  maybeClearFocus(element: IonInput, event: KeyboardEvent) {
    if (event.keyCode == 13) {
      // Return
      void element.getInputElement().then((el: HTMLInputElement) => {
        el.blur();
      });
    }
  }
Example #3
Source File: search-display.page.ts    From Uber-ServeMe-System with MIT License 5 votes vote down vote up
@ViewChild('myInput', {static: true}) myInput: IonInput;
Example #4
Source File: update-email.page.ts    From Uber-ServeMe-System with MIT License 5 votes vote down vote up
@ViewChild('myInput', {static: true}) myInput: IonInput;
Example #5
Source File: ion-intl-tel-input.component.ts    From ion-intl-tel-input with MIT License 5 votes vote down vote up
@ViewChild('numberInput', { static: false }) numberInputEl: IonInput;
Example #6
Source File: add.page.ts    From Elastos.Essentials.App with MIT License 5 votes vote down vote up
@ViewChild('input', {static: false}) input: IonInput;
Example #7
Source File: customize.page.ts    From Elastos.Essentials.App with MIT License 5 votes vote down vote up
@ViewChild('input', {static: false}) input: IonInput;
Example #8
Source File: mnemonicpasscheck.component.ts    From Elastos.Essentials.App with MIT License 5 votes vote down vote up
@ViewChild('pwd',{static:false}) pwd: IonInput;
Example #9
Source File: editprofile.ts    From Elastos.Essentials.App with MIT License 5 votes vote down vote up
@ViewChild('input', { static: false }) input: IonInput;
Example #10
Source File: importdid.ts    From Elastos.Essentials.App with MIT License 5 votes vote down vote up
@ViewChild('addMnemonicWordInput', { static: false }) addMnemonicWordInput: IonInput;
Example #11
Source File: proposal-list.ts    From Elastos.Essentials.App with MIT License 5 votes vote down vote up
@ViewChild('search', { static: false }) search: IonInput;
Example #12
Source File: suggestion-list.ts    From Elastos.Essentials.App with MIT License 5 votes vote down vote up
@ViewChild('search', { static: false }) search: IonInput;
Example #13
Source File: search.page.ts    From Elastos.Essentials.App with MIT License 5 votes vote down vote up
@ViewChild('search', { static: false }) search: IonInput;
Example #14
Source File: mnemonic-write.page.ts    From Elastos.Essentials.App with MIT License 5 votes vote down vote up
@ViewChild('input', { static: false }) input: IonInput;
Example #15
Source File: std-multisig-create.page.ts    From Elastos.Essentials.App with MIT License 5 votes vote down vote up
@ViewChild('input', { static: false }) input: IonInput;
Example #16
Source File: wallet-create.page.ts    From Elastos.Essentials.App with MIT License 5 votes vote down vote up
@ViewChild('input', {static: false}) input: IonInput;