Options
All
  • Public
  • Public/Protected
  • All
Menu

Namespace for the jQuery keypad plugin.

This plugin attaches a popup keyboard to a text field for mouse-driven entry or adds an inline keypad in a division or span.

See http://keith-wood.name/keypad.html and https://github.com/kbwood/keypad

Index

Type Aliases

BeforeShowListener: ((this: HTMLInputElement | HTMLTextAreaElement, division: JQuery, instance: KeypadInstance) => void)

Type declaration

    • A function that is called after the keypad is constructed but before it is displayed.

      Parameters

      Returns void

CloseListener: ((this: HTMLInputElement | HTMLTextAreaElement, inputFieldValue: string, instance: KeypadInstance) => void)

Type declaration

    • (this: HTMLInputElement | HTMLTextAreaElement, inputFieldValue: string, instance: KeypadInstance): void
    • A function that is called when the keypad is closed.

      Parameters

      • this: HTMLInputElement | HTMLTextAreaElement
      • inputFieldValue: string
      • instance: KeypadInstance

      Returns void

KeypressListener: ((this: HTMLInputElement | HTMLTextAreaElement, currentKey: string, inputFieldValue: string, instance: KeypadInstance) => void)

Type declaration

    • (this: HTMLInputElement | HTMLTextAreaElement, currentKey: string, inputFieldValue: string, instance: KeypadInstance): void
    • A function that is called when a key is pressed on the keypad.

      Parameters

      • this: HTMLInputElement | HTMLTextAreaElement
      • currentKey: string
      • inputFieldValue: string
      • instance: KeypadInstance

      Returns void

Generated using TypeDoc