Fixed #1443 - Unnecessary horizontal scrollbar displayed with rowgrouping
parent
741e03847f
commit
33a93d8c08
|
@ -1618,7 +1618,7 @@ export default {
|
||||||
this.d_columnOrder = columnOrder;
|
this.d_columnOrder = columnOrder;
|
||||||
},
|
},
|
||||||
updateScrollWidth() {
|
updateScrollWidth() {
|
||||||
this.$refs.table.style.width = this.$refs.table.scrollWidth + 'px';
|
this.$refs.table.style.width = DomHandler.width(this.$refs.table.parentElement) - DomHandler.calculateScrollbarWidth() + 'px';
|
||||||
},
|
},
|
||||||
createResponsiveStyle() {
|
createResponsiveStyle() {
|
||||||
if (!this.styleElement) {
|
if (!this.styleElement) {
|
||||||
|
|
Loading…
Reference in New Issue