Matt Eason
Results
2
comments of
Matt Eason
What I ended up doing was just triggering a resize event after the table loaded. It's a bit hacky but it works.
Here's the resize event code I use: window.dispatchEvent(new Event('resize')); For IE you might have to use this: var evt = document.createEvent('HTMLEvents'); evt.initEvent('resize', true, false); window.dispatchEvent(evt); I also put that in...