From 4d353eadfd1bbda1a45247ff2d335b5d7df039e1 Mon Sep 17 00:00:00 2001 From: BenjaminMINK <38753043+BenjaminMINK@users.noreply.github.com> Date: Fri, 7 Jan 2022 12:37:58 +0100 Subject: [PATCH] Add 'tab' key support on Input Number See related issue : https://github.com/primefaces/primevue/issues/1518 --- src/components/inputnumber/InputNumber.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/inputnumber/InputNumber.vue b/src/components/inputnumber/InputNumber.vue index ad25accbc..0f26a5861 100755 --- a/src/components/inputnumber/InputNumber.vue +++ b/src/components/inputnumber/InputNumber.vue @@ -421,7 +421,8 @@ export default { } break; - //enter + //tab and enter + case 9: case 13: newValueStr = this.validateValue(this.parseValue(inputValue)); this.$refs.input.$el.value = this.formatValue(newValueStr);