Fixed #1087 - DataTable global filter is reset when applying other filters
Fixes #1087 Co-authored-by: mertsincan <sincan.mert@gmail.com>pull/1281/head
parent
10348594f3
commit
25af520e4d
|
@ -375,8 +375,11 @@ export default {
|
||||||
this.updateEditingRowKeys(newValue);
|
this.updateEditingRowKeys(newValue);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
filters(newValue) {
|
filters: {
|
||||||
this.d_filters = this.cloneFilters(newValue);
|
handler: function (newValue) {
|
||||||
|
this.d_filters = this.cloneFilters(newValue);
|
||||||
|
},
|
||||||
|
deep: true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
beforeMount() {
|
beforeMount() {
|
||||||
|
|
Loading…
Reference in New Issue