From 35b87bf53ad9bf2c0ef690e1477332a7cff20584 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Wed, 23 Aug 2023 10:20:42 +0300 Subject: [PATCH] Fixed #4292 - Datatable Cell Edit: Numpad Enter not saving new data on InputNumber --- components/lib/inputnumber/InputNumber.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/components/lib/inputnumber/InputNumber.vue b/components/lib/inputnumber/InputNumber.vue index 510feedb5..29af7e3ae 100755 --- a/components/lib/inputnumber/InputNumber.vue +++ b/components/lib/inputnumber/InputNumber.vue @@ -436,6 +436,7 @@ export default { case 'Tab': case 'Enter': + case 'NumpadEnter': newValueStr = this.validateValue(this.parseValue(inputValue)); this.$refs.input.$el.value = this.formatValue(newValueStr); this.$refs.input.$el.setAttribute('aria-valuenow', newValueStr);