I would like to manipulate ngModel view like you can do $formatter / $parser in Angular 1.
My original idea is to do the following
<input type="text" [(ngModel)]="context.highQueuePriority" (ngModelChange)="appendPercent($event)" />
and with this function
appendPercent(val): string {
this.context.highQueuePriority = val.replace(/^[a-zA-Z%]+/g, '') + '%';
}
to basically changes the view to 40% if user enters 40.