Fixed #3967 - DataTable:When using ColumnGroup in a table with more than two frozen columns
parent
01b38bf5ae
commit
8db6f9c180
|
@ -294,8 +294,10 @@ export default {
|
|||
if (filterRow) {
|
||||
let index = DomHandler.index(this.$el);
|
||||
|
||||
filterRow.children[index].style.left = this.styleObject.left;
|
||||
filterRow.children[index].style.right = this.styleObject.right;
|
||||
if (filterRow.children[index]) {
|
||||
filterRow.children[index].style.left = this.styleObject.left;
|
||||
filterRow.children[index].style.right = this.styleObject.right;
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue