knockout.decimal
v2.0.0
Published
Simple knockout extender that wraps accounting.js to format and coerce decimal values.
Downloads
3
Readme
#Knockout Decimal Extender
A simple knockout extender for decimals that wraps accounting.js.
##Install with Bower
bower install knockout-decimal
Then add knockout.decimal.js
to your project.
##How to Use
Include the script on your page (either via a normal script tag or via an AMD loader). Then use it like so:
var dec = ko.observable().extend({ decimal: true });
dec("17000");
console.log(dec()); //17000
console.log(dec.formatted()); //17,000.00
You can also use it to set formatted decimal as a value. This is useful for binding user-editable text boxes to the formatted
computed.
dec.formatted("17,000.56");
console.log(dec()); //17000.56