I'm having difficulties getting the grid to scroll to the bottom when using the bufferview extension. Using selectLastRow(), or focusRow() will correctly perform the selection, but the view does not update to show the last row.
In firefox, I am able to manually get it there by using
This does not work in IE7, however. I can see the view jump down, but it immediately resets to the top of the grid.Code:var dom = transConfirmation.grid.getView().scroller.dom, child = dom.childNodes[0]; dom.scrollTop = child.clientHeight - dom.clientHeight;
I also tried using the ensureVisible function on the GridView, but to no avail.
Any suggestions?