I have been using the follow code ( trimmed and cleaned for posting ) to resize the scrolling part of the div depending on how tall the browser is. After upgrading form Q3 2014 to Q1 2015 this error has started to be thrown. Thoughts?
01.
function
ResizeReviewersGrid() {
02.
if
($find(
"grid_id"
)) {
03.
04.
var
grid = $find(
"grid_id"
);
05.
06.
if
(grid.GridDataDiv) {
07.
08.
var
scrollArea = grid.GridDataDiv;
09.
var
gridHeader = grid.GridHeaderDiv;
10.
11.
scrollArea.style.height = 500 - gridHeader.clientHeight +
"px"
;
12.
13.
grid.repaint();
14.
}
15.
}
16.
}