ReadonlychangeUpdates the options of all given NumberFormat elements.
NumberFormat elements to update.
The options to update.
ReadonlysetSets the value of all given NumberFormat elements to the given value. The value may be a number (1234.56)
or a formatted string ("1234.56"). If a formatted string is given, it will be parsed according to the current
formatting options.
The elements to set the value for.
The value to set. Use an empty string or undefined to clear the value.
ReadonlysetSets the value of all given NumberFormat elements to the given value. The value may be a number (1234.56)
or a numerical string ("1234.56"), but not a formatted string (1234·56).
The elements to set the value for.
The value to set. Use an empty string or undefined to clear the value.
The API for performing actions on NumberFormat elements, such as changing the value or the options.
The API is available via
$.xutil.numberFormat.do.For example, to change the value of an element, use
$.xutil.numberFormat.do.setValue(...).Example