Fixed #1259 - Filter column is not frozen

pull/1196/head^2
Cagatay Civici 2021-05-15 13:04:59 +03:00
parent 60547bc237
commit fb2a517838
3 changed files with 17 additions and 1 deletions

View File

@ -165,6 +165,13 @@ export default {
} }
this.styleObject.left = left + 'px'; this.styleObject.left = left + 'px';
} }
let filterRow = this.$el.parentElement.nextElementSibling;
if (filterRow) {
let index = DomHandler.index(this.$el);
filterRow.children[index].style.left = this.styleObject.left;
filterRow.children[index].style.right = this.styleObject.right;
}
} }
}, },
onHeaderCheckboxChange(event) { onHeaderCheckboxChange(event) {

View File

@ -120,7 +120,9 @@ export default {
return col.props ? ((col.type.props[prop].type === Boolean && col.props[prop] === '') ? true : col.props[prop]) : null; return col.props ? ((col.type.props[prop].type === Boolean && col.props[prop] === '') ? true : col.props[prop]) : null;
}, },
getFilterColumnHeaderClass(column) { getFilterColumnHeaderClass(column) {
return ['p-filter-column', this.columnProp(column, 'filterHeaderClass'), this.columnProp(column, 'class')]; return ['p-filter-column', this.columnProp(column, 'filterHeaderClass'), this.columnProp(column, 'class'), {
'p-frozen-column': this.columnProp(column, 'frozen')
}];
}, },
getFilterColumnHeaderStyle(column) { getFilterColumnHeaderStyle(column) {
return [this.columnProp(column, 'filterHeaderStyle'), this.columnProp(column, 'style')]; return [this.columnProp(column, 'filterHeaderStyle'), this.columnProp(column, 'style')];

View File

@ -79,6 +79,13 @@ export default {
} }
this.styleObject.left = left + 'px'; this.styleObject.left = left + 'px';
} }
let filterRow = this.$el.parentElement.nextElementSibling;
if (filterRow) {
let index = DomHandler.index(this.$el);
filterRow.children[index].style.left = this.styleObject.left;
filterRow.children[index].style.right = this.styleObject.right;
}
} }
}, },
onClick(event) { onClick(event) {