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