We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2375207 commit 01ae5e9Copy full SHA for 01ae5e9
src/VueExcelEditor.vue
@@ -1456,11 +1456,16 @@ export default defineComponent({
1456
}
1457
1458
else {
1459
- if (!this.moveEast(e)) {
1460
- if (this.moveSouth(e))
1461
- this.moveToWest(e)
1462
- else
1463
- return this.inputBoxBlur()
+ if (this.autocompleteSelect !== -1 && this.autocompleteSelect < this.autocompleteInputs.length) {
+ this.inputAutocompleteText(this.autocompleteInputs[this.autocompleteSelect])
+ }
+ else {
+ if (!this.moveEast(e)) {
1464
+ if (this.moveSouth(e))
1465
+ this.moveToWest(e)
1466
+ else
1467
+ return this.inputBoxBlur()
1468
1469
1470
1471
e.preventDefault()
0 commit comments