Fixed #4292 - Datatable Cell Edit: Numpad Enter not saving new data on InputNumber

pull/4343/head
Tuğçe Küçükoğlu 2023-08-23 10:20:42 +03:00
parent bf2aa1dbdd
commit 35b87bf53a
1 changed files with 1 additions and 0 deletions

View File

@ -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);