Fixed #2346 - Datatable column order state is not saved

pull/2873/head
mertsincan 2022-08-22 15:49:02 +01:00
parent fe8f56ec4a
commit 6c97e0a8f0
1 changed files with 0 additions and 10 deletions

View File

@ -415,16 +415,6 @@ export default {
mounted() {
this.allChildren = this.$children;
if (this.reorderableColumns) {
let columnOrder = [];
for (let child of this.allChildren) {
if (child.$options._propKeys.indexOf('columnKey') !== -1) {
columnOrder.push(child.columnKey||child.field);
}
}
this.d_columnOrder = columnOrder;
}
this.$el.setAttribute(this.attributeSelector, '');
if (this.responsiveLayout === 'stack' && !this.scrollable) {