I want to display input and when user enters a number: 20
I want 20,00
to be displayed. For greater numbers I want to see thousand separator like 11 200,00
.
<input type="number" (ngModelChange)="calculateSum()" (change)="calculateAmount(invoiceQuota)" [ngModel]="invoiceQuota.controls.grossAmount.value">
I tried to add:
[ngModel]="invoiceQuota.controls.grossAmount.value | number:'1.2-2'
but it does not work
I can't find solution to solve my problem.