Merge pull request #7671 from rekonder/aj_SCI_10827

Save table content after adding row or columns [SCI-10827]
This commit is contained in:
ajugo 2024-07-02 11:45:00 +02:00 committed by GitHub
commit 8b042db2d9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -312,6 +312,12 @@ export default {
afterRemoveCol: () => {
this.updateTableData();
},
afterCreateCol: () => {
this.updateTableData();
},
afterCreateRow: () => {
this.updateTableData();
},
beforeKeyDown: (e) => {
if (e.keyCode === 27) { // esc
this.editingCell = false;