mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-04 07:37:14 +00:00
feat(gui): navigate to prev row cell on shift enter
Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
This commit is contained in:
@@ -220,6 +220,7 @@
|
||||
@update="onCellValueChange(col, row, columnObj)"
|
||||
@change="onCellValueChange(col, row, columnObj)"
|
||||
@navigateToNext="navigateToNext"
|
||||
@navigateToPrev="navigateToPrev"
|
||||
/>
|
||||
|
||||
<table-cell
|
||||
@@ -600,6 +601,11 @@ export default {
|
||||
this.selected.row++
|
||||
}
|
||||
},
|
||||
navigateToPrev() {
|
||||
if (this.selected.row > 0) {
|
||||
this.selected.row--
|
||||
}
|
||||
},
|
||||
addNewRelationTab(...args) {
|
||||
this.$emit('addNewRelationTab', ...args)
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user