I want to use a directive to transform all input data to uppercase. To achieve that, I create this custom directive :
@Directive({
selector: '[appToUpperCase]'
})
export class ToUpperCaseDirective {
constructor() {}
@HostListener('input', ['$event']) onKeyUp(event) {
event.target['value'] = event.target['value'].toUpperCase();
}
}
And I use it like that :
<form [formGroup]="formGroup" appToUpperCase>
It works almost good exept that when I enter text in my field, the upper case transform is permormed but the focus is set at the end of the field...So when I edit a pre filled input, if I want to modify the begining of the data, I have to set the focus at the right place after each Keyup event...
How can I fix that ?
$event.target.setSelectionRange(start, end);
? Could you explain a bit – Esterify