Within a text input field, I have implemented single-way binding in addition to utilizing a number formatter pipe.
I have also set up an (ngModelChange) event handler to remove any commas that are added by the number formatter, and a (change) event to trigger calculations.
<text-input class="text-right"
[editable]="editableFlag"
[ngModel]="pAmount | numberFormatter"
(ngModelChange)="pAmount =($event).replace(',', '')"
(change)="valChanged($event,fundType, key)" >
</text-input>
Everything works smoothly in Chrome, but unfortunately the (ngModelChange) functionality is not functioning as expected in IE11.
I have looked through various posts on Stack Overflow without finding a solution yet.
Any assistance would be greatly appreciated!