I am currently using version 8.0.1.
I have defined the dimsRelativeTo property for my grid. This works well in most cases but when the browser window is resized by dragging the window edges the parent dimensions returned by the cRefresh.getParentDims function are those of the direct parent not the parent defined in dimsRelativeTo. In my case this causes the grid to be sized outside of the dimsRelativeTo parent bounds.
The code calling getParentDims is line 8059 in pqgrid.dev.js and is shown below:
if (isReactiveDims) self.setResizeTimer(function() {
arr = self.getParentDims(), newWdParent = arr[0], newHtParent = arr[1];
if (newHtParent == htParent && newWdParent == wdParent) {
if (parseInt($grid.width()) == parseInt(dims.wdGrid)) {
return
}
} else {
dims.htParent = newHtParent;
dims.wdParent = newWdParent
}
self.refresh({
soft: true
})