inputMode property

String get inputMode

The HTMLElement property inputMode reflects the value of the element's inputmode attribute.

It provides a hint about the type of data that might be entered by the user while editing the element or its contents. This allows the browser to display an appropriate virtual keyboard.

It is used primarily on input elements, but is usable on any element in contenteditable mode.

Implementation

external String get inputMode;
set inputMode (String value)

Implementation

external set inputMode(String value);