returns the formatted number as a string
value | number | the number which needs formatting |
config | object | an object of formatting configuration options |
string | the formatted number in the string format |
The config object can contain the following attributes:
var str1 = webix.Number.format(10008.999, {
decimalSize: 2, groupSize: 3,
decimalDelimiter: ".", groupDelimiter: "'"
});
// ->"10'009.00"