I need to draw a tree grid with selecting and scrolling to a specific record initially. I tried the following code. The selection works, but the scrolling doesn't. What is the solution?
treeGrid.addDataArrivedHandler(new DataArrivedHandler() {
public void onDataArrived(DataArrivedEvent event) {
TreeNode node = treeGrid.getData().find("ID", id);
treeGrid.selectRecord(node);
treeGrid.scrollToRow(treeGrid.getRecordIndex(node));
}
}
});