From 82a4050b6cc5a5891e6ba177a0f0d9143c8bb635 Mon Sep 17 00:00:00 2001 From: Hannes Limmer Date: Fri, 23 Feb 2024 19:34:14 +0100 Subject: [PATCH] fixed left arrow Key --- src/app/components/inputnumber/inputnumber.ts | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/app/components/inputnumber/inputnumber.ts b/src/app/components/inputnumber/inputnumber.ts index 5cd4ee7077f..e4ce0841ea9 100644 --- a/src/app/components/inputnumber/inputnumber.ts +++ b/src/app/components/inputnumber/inputnumber.ts @@ -444,7 +444,7 @@ export class InputNumber implements OnInit, AfterContentInit, OnChanges, Control */ @Output() onClear: EventEmitter = new EventEmitter(); - @ViewChild('input') input!: ElementRef; + @ViewChild('input') input!: ElementRef; @ContentChildren(PrimeTemplate) templates!: QueryList; @@ -824,8 +824,11 @@ export class InputNumber implements OnInit, AfterContentInit, OnChanges, Control break; case 'ArrowLeft': - if (!this.isNumeralChar(inputValue.charAt(selectionStart - 1))) { - event.preventDefault(); + for( let index=selectionStart; index<=inputValue.length;index++){ + if(this.isNumeralChar(inputValue.charAt(index===0?0:index-1))){ + this.input.nativeElement.setSelectionRange(index, index); + break; + } } break; @@ -1363,7 +1366,7 @@ export class InputNumber implements OnInit, AfterContentInit, OnChanges, Control onInputBlur(event: Event) { this.focused = false; - let newValue = this.validateValue(this.parseValue(this.input.nativeElement.value)); + let newValue = this.validateValue(this.parseValue(this.input.nativeElement.value)).toString(); this.input.nativeElement.value = this.formatValue(newValue); this.input.nativeElement.setAttribute('aria-valuenow', newValue); this.updateModel(event, newValue);