Scroll to selected item in Flex 4 Spark List component

前端 未结 12 1535
感动是毒
感动是毒 2020-12-15 17:46

I\'m setting selected element in s:List component with Actionscript, it works, but List doesn\'t scroll to selected item -- need to scroll with scrollbar or mouse. Is it pos

12条回答
  •  轮回少年
    2020-12-15 17:56

    //try this
    this.callLater(updateIndex);//where you want to set the selectedIndex
    
    private function updateIndex():void
    {
        list.selectedIndex = newIndex;
        list.ensureIndexIsVisible(newIndex);
    }
    

提交回复
热议问题