You can listen to the itemOpen event on the AdvancedDataGrid and scroll vertically by the required number of rows. The children of the node opened can be fetched inside the itemOpen event handler by -
var dp:IHierarchicalCollectionView = IHierarchicalCollectionView(adg.dataProvider); var children:ICollectionView = dp.getChildren(event.item); Thanks, Sameer --- In [email protected], "vin.flex" <vin.f...@...> wrote: > > > Hi, > > I have noticed a issue. In an advanced datagrid if you open a > row which is the last row visible then the children are not visible. > we need to scroll down to see them. is there any work around so that > if we click to open a node, it is moves to the top so that their > children are visible. > > thanks > vin >
