Skip to main content
Version: 3.5

TextBoxMode

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Specifies the soft keyboard to display.

public enum TextBoxMode : Enum

Fields

NameDescription
DecimalFractional numeric input keyboard containing the digits and decimal separator for the user's locale (typically . or ,). Devices may or may not show a minus key (-).
EmailA virtual keyboard optimized for entering email addresses. Typically includes the @ character as well as other optimizations. Inputs that require email addresses should typically use <input type="email"> instead.
NoneNo virtual keyboard. For when the page implements its own keyboard input control.
NumericNumeric input keyboard, but only requires the digits 0–9. Devices may or may not show a minus key.
SearchA virtual keyboard optimized for search input. For instance, the return/submit key may be labeled "Search", along with possible other optimizations. Inputs that require a search query should typically use <input type="search"> instead.
TelA telephone keypad input, including the digits 0–9, the asterisk (*), and the pound (#) key. Inputs that require a telephone number should typically use <input type="tel"> instead.
TextDefault Value. Standard input keyboard for the user's current locale.
UrlA keypad optimized for entering URLs. This may have the / key more prominent, for example. Enhanced features could include history access and so on. Inputs that require a URL should typically use <input type="url"> instead.

Used By

NameDescription
InputType.ModeSpecifies the type of data that might be entered by the user while editing the element or its contents. See https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode.