Fixed #4855 - DataTable: restore state defect

This commit is contained in:
tugcekucukoglu 2023-11-21 16:37:27 +03:00
parent 8f595b2b57
commit 56e9c4b487

View file

@ -416,11 +416,6 @@ export default {
}
}
},
beforeMount() {
if (this.isStateful()) {
this.restoreState();
}
},
mounted() {
this.$el.setAttribute(this.attributeSelector, '');
@ -428,8 +423,10 @@ export default {
this.createResponsiveStyle();
}
if (this.isStateful() && this.resizableColumns) {
this.restoreColumnWidths();
if (this.isStateful()) {
this.restoreState();
this.resizableColumns && this.restoreColumnWidths();
}
if (this.editMode === 'row' && this.dataKey && !this.d_editingRowKeys) {