Merge pull request #548 from JMolenkamp/master

ScrollResize: redraw header on scrollbar hiding during feature initialization
pull/553/head
Allan Jardine 2 years ago committed by GitHub
commit b69c6e3bea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -90,6 +90,17 @@ var ScrollResize = function ( dt )
this._attach(); this._attach();
this._size(); this._size();
// Redraw the header if the scrollbar was visible before feature
// initialization, but no longer after initialization. Otherwise,
// the header width would differ from the body width, because the
// scrollbar is no longer present.
var settings = dt.settings()[0];
var divBodyEl = settings.nScrollBody;
var scrollBarVis = divBodyEl.scrollHeight > divBodyEl.clientHeight;
if (settings.scrollBarVis && !scrollBarVis) {
dt.columns.adjust();
}
}; };

Loading…
Cancel
Save