arpan srivastava wrote:
> private function timerEvent(event: TimerEvent) :void{
>             if(dataCount < dataProvider. length){
>                 dG.dataProvider = dataProvider[ dataCount+ +];
>             }else{
>                 dataCount = 0;
>             }
>             dGinvalidateDisplay List();
> }
> 
> it's working fine, but i need to smooth scrolling. is there anyway I can 
> scroll the datagrid automatically. Is there any other way I can do this ?

hang an updateComplete="yourGrid.scrollToIndex(yourGrid.dataProvider.length);" 
on your grid?

Reply via email to