Skip to main content
Version: v11.6.0

Number


Number widget is an editor widget that accepts numeric input.

You can:

  1. Can be used in conjunction with the selected app Locale to display the number in the appropriate format.
  2. Limit the input by applying maximum character length.
  3. Apply regular expressions to validate client side number.
note

Number widget applies the number formatting as per the Locale automatically. In case you do not wish to change the app behavior as per the Locale, use the Text widget with Number Type. For more information, see Text Widget with Number Type.

Properties

PropertyDescription
NameThe name is a unique identifier for Number widget.
PlaceholderA placeholder is a text to show in the editor when there is no value. A common use of this is a search box that says in faint gray italicized text "Search..." which disappears as soon as the user starts to edit the text box. This is a useful alternative to a caption if you are constrained in space and asking for something simple of the user.
Accessibility
HintAny text or an HTML you enter for this property will be shown as a tooltip if the mouse hovers over this widget for 1.5 seconds.
Tab indexThe tab index attribute specifies the tab order of an element. You can use this property to change the default tabbing order for widget access using the tab key. The value can range from 0 to 32767. The default is 0 and -1 makes the element non-focusable. NOTE: In Safari browsers, by default, Tab highlights only text fields. To enable Tab functionality, in Safari Browser from Preferences -> Advanced -> Accessibility set the option "Press Tab to highlight each item on a webpage".
Shortcut keyThe shortcut key property specifies a shortcut key to activate/focus an element. (*See below for details)
Layout
WidthThe width of your widget can be specified in px or % (i.e 50px, 75%).
HeightThe height of your widget can be specified in px or % (i.e 50px, 75%).
Default Value
ValueThis is the default value to display value for an editor widget. Note that the display value is just what the user sees initially, and is not always the dataValue returned by the widget.
Validation
RequiredA required editor in wm.LiveForm may refuse to save without a required field.
Regular ExpressionEnter any regular expression to be used to validate user input for client-side input validation.
Minimum valueEnter minimum value user is allowed to enter.
Maximum valueEnter maximum value user is allowed to enter.
StepUse the stepper to increment/decrement the input value by the specified step interval. Example: if step='3', legal numbers could be -3, 0, 3, 6, etc.
Behavior
Auto FocusThis property makes the element get focused automatically when the page loads.
Read OnlySelecting this checkbox property prevents the user from changing the data value of a widget.
ShowShowing determines whether or not a component is visible. It is a bindable property.
Load on Demand (visible only when show property is bound to a variable)When this property is set and show property is bound, the initialization of the widget will be deferred till the widget becomes visible. This behavior improves the load time. Use this feature with caution, as it has a downside (as we will not be able to interact with the widget through script until the widget is initialized). When show property is not bound the widget will be initialized immediately.
DisabledIf the disabled property is true (checked) the value of the editor cannot change. The widget becomes display-only.
Allow Trailing ZerosThis property specifies whether to keep trailing zeros after decimal point or not.
Update value onIf the selected value is blur: data value will be updated on blur event, default: data value will be updated on key up.

Events

EventDescription
ChangeThis event handler is called each time your element's value changes.
On focusThis event handler is called each time your element is focused.
On blurThis event handler is called each time your focus leaves your element.
Mouse Events
On clickThis event handler is called whenever the click event is triggered on a widget.
On mouse enterThis event handler is called whenever the mouse enters the widget.
On mouse leaveThis event handler is called whenever the mouse leaves the widget.
Touch Events
On tapThis event handler is called whenever the tap event is triggered on a widget.
Keyboard Events
On key downThis event handler is called whenever a key is pressed down.
On key pressThis event handler is called whenever a key is pressed.
On key upThis event handler is called whenever a key is released.

Shortcutkey: The shortcut key property specifies a shortcut key to click the button. The way of accessing the shortcut key is varying in different browsers:

BrowserShortcutkey Trigger
Internet Explorer[Alt] + shortcutkey
Chrome[Alt] + shortcutkey (Windows/Linux)
[Control][Alt] + shortcutkey (MAC)
Firefox[Alt][Shift] + shortcutkey (Windows/Linux)
[Control][Alt] + shortcutkey (MAC)

See More

Form Widgets
Currency
Date
Datetime
Text