autoNumeric is a standalone Javascript library that provides live as-you-type formatting for international numbers and currencies.
The latest stable branch is 3.*.
For older stable versions, please take a look here, while for the latest development version, check the next
branch.
Moreover, you can take a look at what could be the next features coming to autoNumeric on our project page (feel free to participate!).
Highlights
autoNumeric main features are :
- Easy to use and configure
new AutoNumeric('.myInput', { currencySymbol : '$' });
- Very high configurability (more than 40 options available)
const autoNumericOptionsEuro = {
digitGroupSeparator : '.',
decimalCharacter : ',',
decimalCharacterAlternative: '.',
currencySymbol : '\u202f€',
currencySymbolPlacement : AutoNumeric.options.currencySymbolPlacement.suffix,
roundingMethod : 'U',
};
new AutoNumeric(domElement, autoNumericOptionsEuro);
- User experience oriented ; using autoNumeric just feels right and natural
- Supports most international numeric formats and currencies
(If the one you use is not supported yet, open an issue and we'll add it as soon as possible!)
And also:
- Any number of different formats can be used at the same time on the same page.
Each input can be configured by either setting the options as HTML5 data attributes, or directly passed as an argument in the Javascript code - The settings can easily be changed at any time using the
update
method or via a callback - autoNumeric supports
input
elements as well as most text elements, allowing you to place formatted numbers and currencies on just about any part of your page - AutoNumeric elements can be linked together allowing you to perform one action on multiple elements at once
- 7 pre-defined currency options allows you to directly use autoNumeric by skipping the option configuration step
- 26 built-in methods gives you the flexibility needed to use autoNumeric to its maximum potential
- 21 additional methods specialized for managing form submission
- More than 40 options allows you to customize the output format
With that said, autoNumeric supports most international numeric formats and currencies including those used in Europe, Asia, and North and South America.
Getting started
Installation
You can install autoNumeric with your preferred dependency manager:
yarn add autonumeric
npm install autonumeric
How to use?
In the browser
Simply include autoNumeric in your html <header>
tag.
No other files or libraries are required ; autoNumeric has no dependency.
<script src="autoNumeric.min.js" type="text/javascript"></script>
<script src="https://cdn.jsdelivr.net/autonumeric/3.0.0/autoNumeric.min.js"></script>
In another script
If you want to use AutoNumeric in your code, you can import the src/AutoNumeric.js
file as an ES6 module using:
import AutoNumeric from 'AutoNumeric';
Then you can initialize autoNumeric with or without options :
anElement = new AutoNumeric(domElement);
anElement = new AutoNumeric(domElement, { options });
anElement = new AutoNumeric('.myCssClass > input').french();
(See the available language list here)
You're done!
Note : an AutoNumeric object can be initialized in various ways, check those out here
On which elements can it be used?
autoNumeric can be used in two ways ;
- with event listeners when used on
<input>
elements or on contenteditable
-enabled elements making them reactive (in a read/write mode), or - without event listeners when used on DOM elements not having the
contenteditable
attribute set to true
, essentially acting as a format-once-and-forget-read only mode.
On <input>
elements
When used on an <input>
element, you'll be able to interact with its value and get a formatted input value as-you-type, using the full power of autoNumeric.
Please note than due to browser constraints, only the following supported <input>
types are supported :
text
,tel
,hidden
, or- no type specified at all
<input type='text' value="1234.56">
<input type='tel' value="1234.56">
<input type='hidden' value="1234.56">
<input value="1234.56">
Note : the number
type is not supported simply because autoNumeric formats numbers as strings (ie. '123.456.789,00 €'
) that this input type does not allow.
On contenteditable
-enabled elements
Any element in the following allowedTagList
that support the contenteditable
attribute can be initialized by autoNumeric.
This means that anywhere on a page, on any DOM element, you can harness the power of autoNumeric which will allow you to mask the user inputs.
Given the following html code...:
<p id="editableDom" contenteditable="true">12345678.9012</p>
you can initialize this <p>
element with autoNumeric:
new AutoNumeric('#editableDom').french();
...and it will act exactly like an <input>
element controlled by autoNumeric.
On other DOM elements
You can use autoNumeric to format a DOM element value once on load.
This means it will then not react to any user interaction.
The following elements are accepted :
const allowedTagList = [
'b', 'caption', 'cite', 'code', 'const', 'dd', 'del', 'div', 'dfn', 'dt', 'em', 'h1', 'h2', 'h3',
'h4', 'h5', 'h6', 'ins', 'kdb', 'label', 'li', 'option', 'output', 'p', 'q', 's', 'sample',
'span', 'strong', 'td', 'th', 'u'
]
Options
Multiple options allow you to customize precisely how a form input will format your key strokes as you type :
Option | Description | Default Value |
---|
allowDecimalPadding | Allow padding the decimal places with zeros | true |
createLocalList | Determine if a local list of AutoNumeric objects must be kept when initializing the elements and others | true |
currencySymbol | Currency symbol | '' |
currencySymbolPlacement | Placement of the currency sign, relative to the number (as a prefix or a suffix) | 'p' |
decimalCharacter | Decimal separator character | '.' |
decimalCharacterAlternative | Allow to declare alternative decimal separator which is automatically replaced by the real decimal character (useful in countries where the keyboard numeric pad have a period as the decimal character) | null |
decimalPlacesOverride | Maximum number of decimal places (used to override decimal places set by the minimumValue & maximumValue values) | null |
decimalPlacesShownOnFocus | Expanded decimal places visible when input has focus | null |
defaultValueOverride | Helper option for the ASP.NET-specific postback issue | null |
digitalGroupSpacing | Digital grouping for the thousand separator | '3' |
digitGroupSeparator | Thousand separator character | ',' |
emptyInputBehavior | Define what to display when the input value is empty (possible options are focus , press , always and zero ) | 'focus' |
failOnUnknownOption | This option is the 'strict mode' (aka 'debug' mode), which allows autoNumeric to strictly analyse the options passed, and fails if an unknown options is used in the settings object. | false |
formatOnPageLoad | Determine if the default value will be formatted on initialization | true |
isCancellable | Determine if the user can 'cancel' the last modifications done to the element value when using the Escape key | true |
leadingZero | Controls the leading zero behavior (possible options are allow , deny and keep ) | 'deny' |
maximumValue | Maximum possible value | '9999999999999.99' |
minimumValue | Minimum possible value | '-9999999999999.99' |
modifyValueOnWheel | Determine if the element value can be incremented / decremented with the mouse wheel. The wheel behavior is modified with the wheelStep option. | true |
negativeBracketsTypeOnBlur | Adds brackets [] , parenthesis () , curly braces {} or <> on negative values when unfocused | null |
negativePositiveSignPlacement | Placement of negative/positive sign relative to the currency symbol (possible options are l (left), r (right), p (prefix) and s (suffix)) | null |
noEventListeners | Defines if the element should have event listeners activated on it | false |
noSeparatorOnFocus | Remove the thousand separator, currency symbol and suffix on focus | false |
onInvalidPaste | Manage how autoNumeric react when the user tries to paste an invalid number (possible options are error , ignore , clamp , truncate or replace ) | 'error' |
outputFormat | Defines the localized output format of the get , getString & getArray methods | null |
overrideMinMaxLimits | Override minimum and maximum limits (possible options are ceiling , floor and ignore ) | null |
readOnly | Defines if the <input> element should be set as read only on initialization | false |
roundingMethod | Method used for rounding (possible options are S , A , s , a , B , U , D , C , F , N05 , U05 or D05 ) | 'S' |
saveValueToSessionStorage | Allow the decimalPlacesShownOnFocus value to be saved into session storage | false |
scaleDecimalPlaces | The number of decimal places when unfocused | null |
scaleDivisor | This option decides the onfocus value and places the result in the input on focusout | null |
scaleSymbol | Symbol placed as a suffix when unfocused | null |
serializeSpaces | Defines how the serialize functions should treat spaces when serializing (convert them to '%20' or '+' ) | '+' |
selectNumberOnly | Determine if the select all keyboard command will select the complete input text, or only the input numeric value | false |
showPositiveSign | Allow the positive sign symbol + to be displayed for positive numbers | false |
showWarnings | Defines if warnings should be shown | true |
suffixText | Additional text suffix that is added after the number | '' |
unformatOnHover | Defines if the element value should be unformatted when the user hover his mouse over it while holding the Alt key | true |
unformatOnSubmit | Removes formatting on submit event | false |
wheelStep | Used in conjonction with the modifyValueOnWheel option, this allow to either define a fixed step (ie. 1000 ), or a progressive one | 'progressive' |
noEventListeners
Using the noEventListeners
option allow autoNumeric to only format without adding any event listeners to an input, or any other DOM elements (that the function would accept as a parameter). This would be useful for read-only values for instance.
anElement = new AutoNumeric(domElement, 12345.789, { options }).remove();
anElement = new AutoNumeric(domElement, 12345.789, { noEventListeners: true });
In the latter case, it initialize the AutoNumeric element, except it does not add any event listeners. Which means it format the value only once and then let the user modify it freely.
Note: The value can then be formatted via a call to set
.
readOnly
AutoNumeric can initialize an <input>
element with the readonly
property by setting the readOnly
option to true
in the settings:
anElement = new AutoNumeric(domElement, 12345.789, { readOnly: true });
For more detail on how to use each options, please take a look at the detailed comments in the source code for the defaultSettings
object.
Predefined options
Sometimes you do not want to have to configure every single aspect of your format, specially if it's a common one.
Hence, we provide multiple default options for the most common currencies and number formats.
Predefined language options
autoNumeric provides predefined language options to format currencies.
You can set the pre-defined language option like so:
new AutoNumeric('.mySelector > input').french();
new AutoNumeric('.mySelector > input', AutoNumeric.getPredefinedOptions().French);
Currently, the predefined language options are:
| Option name |
---|
:fr: | French |
:es: | Spanish |
:us: | NorthAmerican |
:uk: | British |
🇨🇭 | Swiss |
:jp: | Japanese |
:cn: | Chinese |
🇧🇷 | Brazilian |
If you feel a common currency option is missing, please create a pull request and we'll add it!
Predefined common options
Moreover, autoNumeric provides the following common options:
Option name | Description |
---|
dotDecimalCharCommaSeparator | Set the decimal character as a dot . and the group separator as a comma , |
commaDecimalCharDotSeparator | Set the decimal character as a comma , and the group separator as a dot . |
integer | Set the minimum and maximum value so that only an integer can be entered, without any decimal places available |
integerPos | Set the minimum and maximum value so that only a positive integer can be entered |
integerNeg | Set the minimum and maximum value so that only a negative integer can be entered |
float | Set the minimum and maximum value so that a float can be entered, without the default 2 decimal places |
floatPos | Set the minimum and maximum value so that only a positive float can be entered |
floatNeg | Set the minimum and maximum value so that only a negative float can be entered |
numeric | Format the value as a numeric string (with no digit group separator, and a dot for the decimal point) |
numericPos | Idem above, but only allow positive values |
numericNeg | Idem above, but only allow negative values |
euro | Same configuration than French |
euroPos | Idem above, but only allow positive values |
euroNeg | Idem above, but only allow negative values |
euroSpace | Same configuration than French except a space is used for the group separator instead of the dot |
euroSpacePos | Idem above, but only allow positive values |
euroSpaceNeg | Idem above, but only allow negative values |
dollar | Same configuration than NorthAmerican |
dollarPos | Idem above, but only allow positive values |
dollarNeg | Idem above, but only allow negative values |
percentageEU2dec | Same configuration than French , but display a percent % sign instead of the currency sign, with 2 decimal places |
percentageEU2decPos | Idem above, but only allow positive values |
percentageEU2decNeg | Idem above, but only allow negative values |
percentageEU3dec | Same configuration than French , but display a percent % sign instead of the currency sign, with 3 decimal places |
percentageEU3decPos | Idem above, but only allow positive values |
percentageEU3decNeg | Idem above, but only allow negative values |
percentageUS2dec | Same configuration than NorthAmerican , but display a percent % sign instead of the currency sign, with 2 decimal places |
percentageUS2decPos | Idem above, but only allow positive values |
percentageUS2decNeg | Idem above, but only allow negative values |
percentageUS3dec | Same configuration than NorthAmerican , but display a percent % sign instead of the currency sign, with 3 decimal places |
percentageUS3decPos | Idem above, but only allow positive values |
percentageUS3decNeg | Idem above, but only allow negative values |
You can set those pre-defined options like so:
new AutoNumeric('.mySelector > input', AutoNumeric.getPredefinedOptions().integerPos);
Initialization
An AutoNumeric object can be initialized in various ways.
Initialize one AutoNumeric object
It always takes either a DOM element reference as its first argument, or a css string selector.
Note: only one element can be selected this way, since under the hood document.querySelector
is called, and this only return one element.
If you need to be able to select and initialize multiple elements in one call, then consider using the static AutoNumeric.multiple()
function
anElement = new AutoNumeric(domElement);
anElement = new AutoNumeric(domElement, { options });
anElement = new AutoNumeric(domElement).french();
anElement = new AutoNumeric(domElement).french({ options });
anElement = new AutoNumeric(domElement, 12345.789);
anElement = new AutoNumeric(domElement, 12345.789, { options });
anElement = new AutoNumeric(domElement, '12345.789', { options });
anElement = new AutoNumeric(domElement, null, { options });
anElement = new AutoNumeric(domElement, 12345.789).french({ options });
anElement = new AutoNumeric(domElement, 12345.789, { options }).french({ options });
anElement = new AutoNumeric('.myCssClass > input');
anElement = new AutoNumeric('.myCssClass > input', { options });
anElement = new AutoNumeric('.myCssClass > input', 12345.789);
anElement = new AutoNumeric('.myCssClass > input', 12345.789, { options });
anElement = new AutoNumeric('.myCssClass > input', null, { options });
anElement = new AutoNumeric('.myCssClass > input', 12345.789).french({ options });
Note: AutoNumeric also accepts a limited tag list that it will format on page load, but without adding any event listeners
Initialize multiple AutoNumeric objects at once
If you know you want to initialize multiple elements in one call, you must then use the static AutoNumeric.multiple()
function:
[anElement1, anElement2, anElement3] = AutoNumeric.multiple([domElement1, domElement2, domElement3], { options });
[anElement1, anElement2, anElement3] = AutoNumeric.multiple([domElement1, domElement2, domElement3], 12345.789, { options });
[anElement1, anElement2, anElement3] = AutoNumeric.multiple.french([domElement1, domElement2, domElement3], [12345.789, 234.78, null], { options });
[anElement1, anElement2] = AutoNumeric.multiple({ rootElement: formElement }, { options });
[anElement1, anElement2] = AutoNumeric.multiple({ rootElement: formElement, exclude : [hiddenElement, tokenElement] }, { options });
[anElement1, anElement2] = AutoNumeric.multiple({ rootElement: formElement, exclude : [hiddenElement, tokenElement] }, [12345.789, null], { options });
[anElement1, anElement2] = AutoNumeric.multiple('.myCssClass > input', { options });
[anElement1, anElement2] = AutoNumeric.multiple('.myCssClass > input', [null, 12345.789], { options });
Options update
Options can be added and/or modified after the initialization has been done.
Either by passing an options object that contains multiple options...
anElement.update({ moreOptions });
anElement.update(AutoNumeric.getPredefinedOptions().NorthAmerican);
...or by changing the options one by one (or by calling a pre-defined option object)
anElement.options.minimumValue('12343567.89');
anElement.options.allowDecimalPadding(false);
Lastly, the option object can be accessed directly, thus allowing to query each options globally too
anElement.getSettings();
Methods
autoNumeric provides numerous methods to access and modify the element value, formatted or unformatted, at any point in time.
It does so by providing access to those methods via the AutoNumeric object class (declared as an ES6 Module).
First. you need to get a reference to the AutoNumeric module that you need to import:
import AutoNumeric from 'autoNumeric.min';
Then you'll be able to access either the methods on the instantiated AutoNumeric object, or the static functions directly by using the AutoNumeric
class.
Instantiated methods
Usual functions on each autoNumeric-managed element
Method | Description | Call example |
---|
set | Set the value (that will be formatted immediately) | anElement.set(42.76); |
set | Set the value and update the setting in one go | anElement.set(42.76, { options }); |
setUnformatted | Set the value (that will not be formatted immediately) | anElement.setUnformatted(42.76); |
setUnformatted | Set the value and update the setting in one go (the value will not be formatted immediately) | anElement.setUnformatted(42.76, { options }); |
getNumericString | Return the unformatted number as a string | anElement.getNumericString(); |
get | Alias for the .getNumericString() method | anElement.get(); |
getFormatted | Return the formatted string | anElement.getFormatted(); |
getNumber | Return the unformatted number as a number | anElement.getNumber(); |
getLocalized | Return the localized unformatted number as a string | anElement.getLocalized(); |
getLocalized | Return the localized unformatted number as a string, using the outputFormat option override passed as a parameter | anElement.getLocalized(forcedOutputFormat); |
reformat | Force the element to reformat its value again (in case the formatting has been lost) | anElement.reformat(); |
unformat | Remove the formatting and keep only the raw unformatted value in the element (as a numeric string) | anElement.unformat(); |
unformatLocalized | Remove the formatting and keep only the localized unformatted value in the element | anElement.unformatLocalized(); |
unformatLocalized | Idem above, but using the outputFormat option override passed as a parameter | anElement.unformatLocalized(forcedOutputFormat); |
isPristine | Return true if the current value is the same as when the element got initialized | anElement.isPristine(); |
select | Select the formatted element content, based on the selectNumberOnly option | anElement.select(); |
selectNumber | Select only the numbers in the formatted element content, leaving out the currency symbol, whatever the value of the selectNumberOnly option | anElement.selectNumber(); |
selectInteger | Select only the integer part in the formatted element content, whatever the value of selectNumberOnly | anElement.selectInteger(); |
selectDecimal | Select only the decimal part in the formatted element content, whatever the value of selectNumberOnly | anElement.selectDecimal(); |
clear | Reset the element value to the empty string '' (or the currency sign, depending on the emptyInputBehavior option value) | anElement.clear(); |
clear | Reset the element value to the empty string '' as above, no matter the emptyInputBehavior option value | anElement.clear(true); |
Un-initialize the AutoNumeric element with the following methods
Method | Description | Call example |
---|
remove | Remove the autoNumeric listeners from the element (previous name : 'destroy'). Keep the element content intact. | anElement.remove(); |
wipe | Remove the autoNumeric listeners from the element, and reset its value to '' | anElement.wipe(); |
nuke | Remove the autoNumeric listeners from the element, and delete the DOM element altogether | anElement.nuke(); |
Node manipulation
Method | Description | Call example |
---|
node | Return the DOM element reference of the autoNumeric-managed element | anElement.node(); |
parent | Return the DOM element reference of the parent node of the autoNumeric-managed element | anElement.parent(); |
detach | Detach the current AutoNumeric element from the shared 'init' list (which means any changes made on that local shared list will not be transmitted to that element anymore) | anElement.detach(); |
detach | Idem above, but detach the given AutoNumeric element, not the current one | anElement.detach(otherAnElement); |
attach | Attach the given AutoNumeric element to the shared local 'init' list. When doing that, by default the DOM content is left untouched. The user can force a reformat with the new shared list options by passing a second argument to true . | anElement.attach(otherAnElement, reFormat = true); |
Use any AutoNumeric element to format/unformat other numbers or DOM elements
This allows to format or unformat numbers, strings or directly other DOM elements without having to specify the options each time, since the current AutoNumeric object already has those settings set.
Method | Description | Call example |
---|
formatOther | This use the same function signature that when using the static AutoNumeric method directly (cf. below: AutoNumeric.format ), but without having to pass the options | anElement.formatOther(12345, { options }); |
formatOther | Idem above, but apply the formatting to the DOM element content directly | anElement.formatOther(domElement5, { options }); |
unformatOther | This use the same function signature that when using the static AutoNumeric method directly (cf. below: AutoNumeric.unformat ), but without having to pass the options | anElement.unformatOther('1.234,56 €', { options }); |
unformatOther | Idem above, but apply the unformatting to the DOM element content directly | anElement.unformatOther(domElement5, { options }); |
Initialize other DOM Elements
Once you have an AutoNumeric element already setup correctly with the right options, you can use it as many times you want to initialize as many other DOM elements as needed (this works only on elements that can be managed by autoNumeric).
Whenever init
is used to initialize other DOM element, a shared 'local' list of those elements is stored in the AutoNumeric objects.
This allows for neat things like modifying all those linked AutoNumeric elements globally, with one call.
Method | Description | Call example |
---|
init | Use an existing AutoNumeric element to initialize another DOM element with the same options | const anElement2 = anElement.init(domElement2); |
init | If true is set as the second argument, then the newly generated AutoNumeric element will not share the same local element list as anElement | const anElement2 = anElement.init(domElement2, true); |
Perform actions globally on a shared list of AutoNumeric elements
This local list can be used to perform global operations on all those AutoNumeric elements, with one function call.
To do so, you must call the wanted function by prefixing .global
before the method name (ie. anElement.global.set(42)
).
Below are listed all the supported methods than can be called globally:
anElement.global.set(2000);
anElement.global.setUnformatted(69);
[result1, result2, result3] = anElement.global.get();
[result1, result2, result3] = anElement.global.getNumericString();
[result1, result2, result3] = anElement.global.getFormatted();
[result1, result2, result3] = anElement.global.getNumber();
[result1, result2, result3] = anElement.global.getLocalized();
anElement.global.reformat();
anElement.global.unformat();
anElement.global.unformatLocalized();
anElement.global.unformatLocalized(forcedOutputFormat);
anElement.global.update({ options });
anElement.global.isPristine();
anElement.global.isPristine(false);
anElement.global.clear();
anElement.global.remove();
anElement.global.wipe();
anElement.global.nuke();
The shared local list also provide list-specific methods to manipulate it:
anElement.global.has(domElementOrAutoNumericObject);
anElement.global.addObject(domElementOrAutoNumericObject);
anElement.global.removeObject(domElementOrAutoNumericObject);
anElement.global.removeObject(domElementOrAutoNumericObject, true);
anElement.global.empty();
anElement.global.empty(true);
[anElement0, anElement1, anElement2, anElement3] = anElement.global.elements();
anElement.global.getList();
anElement.global.size();
Form functions
autoNumeric elements provide special functions to manipulate the form they are a part of.
Those special functions really work on the parent <form>
element, instead of the <input>
element itself.
Method | Description | Call example |
---|
form | Return a reference to the parent element, null if it does not exist | anElement.form(); |
formNumericString | Return a string in standard URL-encoded notation with the form input values being unformatted | anElement.formNumericString(); |
formFormatted | Return a string in standard URL-encoded notation with the form input values being formatted | anElement.formFormatted(); |
formLocalized | Return a string in standard URL-encoded notation with the form input values, with localized values | anElement.formLocalized(); |
formLocalized(forcedOutputFormat) | Idem above, but with the possibility of overriding the outputFormat option | anElement.formLocalized(forcedOutputFormat); |
formArrayNumericString | Return an array containing an object for each form <input> element, with the values as numeric strings | anElement.formArrayNumericString(); |
formArrayFormatted | Return an array containing an object for each form <input> element, with the values as formatted strings | anElement.formArrayFormatted(); |
formArrayLocalized | Return an array containing an object for each form <input> element, with the values as localized numeric strings | anElement.formArrayLocalized(); |
formArrayLocalized(forcedOutputFormat) | Idem above, but with the possibility of overriding the outputFormat option | anElement.formArrayLocalized(forcedOutputFormat); |
formJsonNumericString | Return a JSON string containing an object representing the form input values. This is based on the result of the formArrayNumericString() function. | anElement.formJsonNumericString(); |
formJsonFormatted | Return a JSON string containing an object representing the form input values. This is based on the result of the formArrayFormatted() function. | anElement.formJsonFormatted(); |
formJsonLocalized | Return a JSON string containing an object representing the form input values. This is based on the result of the formArrayLocalized() function. | anElement.formJsonLocalized(); |
formJsonLocalized(forcedOutputFormat) | Idem above, but with the possibility of overriding the outputFormat option | anElement.formJsonLocalized(forcedOutputFormat); |
formUnformat | Unformat all the autoNumeric-managed elements that are a child to the parent element of this anElement input, to numeric strings | anElement.formUnformat(); |
formUnformatLocalized | Unformat all the autoNumeric-managed elements that are a child to the parent element of this anElement input, to localized strings | anElement.formUnformatLocalized(); |
formReformat | Reformat all the autoNumeric-managed elements that are a child to the parent element of this anElement input | anElement.formReformat(); |
The following functions can either take a callback, or not. If they don't, the default form.submit()
function will be called.
Method | Description | Call example |
---|
formSubmitNumericString(callback) | Run the callback(value) with value being equal to the result of formNumericString() | anElement.formSubmitNumericString(callback); |
formSubmitFormatted(callback) | Run the callback(value) with value being equal to the result of formFormatted() | anElement.formSubmitFormatted(callback); |
formSubmitLocalized(callback) | Run the callback(value) with value being equal to the result of formLocalized() | anElement.formSubmitLocalized(callback); |
formSubmitLocalized(forcedOutputFormat, callback) | Idem above, but with the possibility of overriding the outputFormat option | anElement.formSubmitLocalized(forcedOutputFormat, callback); |
For the following methods, the callback is mandatory:
Method | Description | Call example |
---|
formSubmitArrayNumericString(callback) | Run the callback(value) with value being equal to the result of formArrayNumericString() | anElement.formSubmitArrayNumericString(callback); |
formSubmitArrayFormatted(callback) | Run the callback(value) with value being equal to the result of formArrayFormatted() | anElement.formSubmitArrayFormatted(callback); |
formSubmitArrayLocalized(callback, forcedOutputFormat) | Idem above, but with the possibility of overriding the outputFormat option | anElement.formSubmitArrayLocalized(callback, forcedOutputFormat); |
formSubmitJsonNumericString(callback) | Run the callback(value) with value being equal to the result of formJsonNumericString() | anElement.formSubmitJsonNumericString(callback); |
formSubmitJsonFormatted(callback) | Run the callback(value) with value being equal to the result of formJsonFormatted() | anElement.formSubmitJsonFormatted(callback); |
formSubmitJsonLocalized(callback, forcedOutputFormat) | Idem above, but with the possibility of overriding the outputFormat option | anElement.formSubmitJsonLocalized(callback, forcedOutputFormat); |
Function chaining
Most of those functions can be chained which allow to be less verbose and more concise.
anElement.french()
.set(42)
.update({ options })
.formSubmitJsonNumericString(callback)
.clear();
Static methods
Without having to initialize any AutoNumeric object, you can directly use the static AutoNumeric
class functions.
Method | Description | Call example |
---|
validate | Check if the given option object is valid, and that each option is valid as well. This throws an error if it's not. | AutoNumeric.validate({ options }) |
areSettingsValid | Return true in the settings are valid | AutoNumeric.areSettingsValid({ options }) |
getDefaultConfig | Return the default autoNumeric settings | AutoNumeric.getDefaultConfig() |
getPredefinedOptions | Return all the predefined options in one object | AutoNumeric.getPredefinedOptions() |
getPredefinedOptions | Return a specific pre-defined language option object | AutoNumeric.getPredefinedOptions().French |
format | Format the given number with the given options. This returns the formatted value as a string. | AutoNumeric.format(12345.21, { options }); |
format | Idem above, but using a numeric string as the first parameter | AutoNumeric.format('12345.21', { options }); |
format | Format the domElement value (or textContent ) with the given options and returns the formatted value as a string. This does not update that element value. | AutoNumeric.format(domElement, { options }); |
formatAndSet | Format the domElement value with the given options and returns the formatted value as a string. This function does update that element value with the newly formatted value in the process. | AutoNumeric.formatAndSet(domElement, { options }); |
unformat | Unformat the given formatted string with the given options. This returns a numeric string. | AutoNumeric.unformat('1.234,56 €', { options }); |
unformat | Unformat the domElement value with the given options and returns the unformatted numeric string. This does not update that element value. | AutoNumeric.unformat(domElement, { options }); |
unformatAndSet | Unformat the domElement value with the given options and returns the unformatted value as a numeric string. This function does update that element value with the newly unformatted value in the process. | AutoNumeric.unformatAndSet(domElement, { options }); |
unformatAndSet | Recursively unformat all the autoNumeric-managed elements that are a child to the referenceToTheDomElement element given as a parameter (this is usually the parent <form> element) | AutoNumeric.unformatAndSet(referenceToTheDomElement); |
reformatAndSet | Recursively format all the autoNumeric-managed elements that are a child to the referenceToTheDomElement element given as a parameter (this is usually the parent <form> element), with the settings of each AutoNumeric elements. | AutoNumeric.reformatAndSet(referenceToTheDomElement); |
localize | Unformat and localize the given formatted string with the given options. This returns a string. | AutoNumeric.localize('1.234,56 €', { options }); |
localize | Idem as above, but return the localized DOM element value. This does not update that element value. | AutoNumeric.localize(domElement, { options }); |
localizeAndSet | Unformat and localize the domElement value with the given options and returns the localized value as a string. This function does update that element value with the newly localized value in the process. | AutoNumeric.localizeAndSet(domElement, { options }); |
test | Test if the given domElement is already managed by AutoNumeric (if it is initialized) | AutoNumeric.test(domElement); |
version | Return the AutoNumeric version number (for debugging purpose) | AutoNumeric.version(); |
Questions
For questions and support please use the Gitter chat room or IRC on Freenode #autoNumeric.
The issue list of this repository is exclusively for bug reports and feature requests.
How to contribute?
Contributors and pull requests are welcome.
Feel free to contact us for any questions.
For more information about how to contribute, please check the CONTRIBUTING file which has more details about it.
In a nutshell :
- Get the latest source
git clone -b next https://github.com/BobKnothe/autoNumeric.git && cd autoNumeric && yarn install
- Make you changes
- Lint, build, and run tests
yarn lint && yarn build && yarn test
- Create a pull request, and we'll check it out as soon as possible!
Again, be sure to check the CONTRIBUTING file for more details.
Also, feel free to follow our RSS feeds on master and next to keep up with the latest commits.
Dependencies
None!
Older versions
The previous stable autoNumeric version v1.9.46 can be found here, and the v2 branch can be found here.
Related projects
For integration into Rails projects, you can use the autonumeric-rails project.
Documentation
The old and outdated documentation can be found in the Documentation file.
For some examples and an option code generator for the old v1.9.* version, take a look here.
Licence
autoNumeric is an MIT-licensed open source project, and its authors are credited in AUTHORS.md.
Feel free to donate via Paypal (Robert) or Patreon (Alexandre) to support autoNumeric development.