var n = (1223578.00).toLocaleString('de-DE');
Should be -> "1.223.578,00", but the output is: 1.223.578 (the decimal places are missing)
Whats wrong ?
<script type="text/javascript">var amount= '{{currency1}}';</script>
this is a filled form from SQL, currency1 = 1223578.00
How can I use this, with this placeholders?
Set the minimumFractionDigits property to your desired number of digits.
var n = (1223578.00).toLocaleString('de-DE',{ minimumFractionDigits: 2 });
Produces: 1.223.578,00
The above function may not work on all browsers. To ensure the same result on all browsers, you can manually create the string as follows:
Modified From: https://stackoverflow.com/a/16157942/4347337
function DelocaleString(x, sep, grp, dec) {
//add decimals
var y = x.toFixed(dec);
//strip decimals
var x_integer = y.split('.')[0];
var x_fraction = y.split('.')[1];
var x_fractionString = "";
if (dec > 0) {
x_fractionString = ',' + x_fraction;
}
var sx = ('' + x_integer).split('.'),
s = '',
i, j;
sep || (sep = ' '); // default seperator
grp || grp === 0 || (grp = 3); // default grouping
i = sx[0].length;
while (i > grp) {
j = i - grp;
s = sep + sx[0].slice(j, i) + s;
i = j;
}
s = sx[0].slice(0, i) + s;
sx[0] = s;
return sx.join('.') + x_fractionString
}
Example
$().ready(function() {
$('#convertBtn').click(function() {
ConvertNumber();
});
});
function ConvertNumber() {
var input = $('#in').val();
if ($.isNumeric(input)) {
$('#out').val(DelocaleString(+input, '.', 3, 2));
} else {
$('#out').val('Input is not a number!');
}
}
function DelocaleString(x, sep, grp, dec) {
//add decimals
var y = x.toFixed(dec);
//strip decimals
var x_integer = y.split('.')[0];
var x_fraction = y.split('.')[1];
var x_fractionString = "";
if (dec > 0) {
x_fractionString = ',' + x_fraction;
}
var sx = ('' + x_integer).split('.'),
s = '',
i, j;
sep || (sep = ' '); // default seperator
grp || grp === 0 || (grp = 3); // default grouping
i = sx[0].length;
while (i > grp) {
j = i - grp;
s = sep + sx[0].slice(j, i) + s;
i = j;
}
s = sx[0].slice(0, i) + s;
sx[0] = s;
return sx.join('.') + x_fractionString
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" />
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<form class="form-horizontal" style="max-width:350px;">
<div class="form-group">
<label for="in" class="col-sm-2 control-label">Input</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="in" placeholder="Allowable formats: 123.456789, 123456789">
</div>
</div>
<div class="form-group">
<label for="out" class="col-sm-2 control-label">Output</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="out" placeholder="Formatted Number" readonly>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button class="btn btn-default" id="convertBtn">Convert Number</button>
</div>
</div>
</form>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With