문제

i am using a tree with an array collection, i have tried to run busy cursor on expandItem but now i dont know were to stop it when the tree finishes loading children,

도움이 되었습니까?

해결책

found it :)

CursorManager.setBusyCursor() in overridden expandItem

CursorManager.removeBusyCursor(); in update complete...

private function onUpdateComplete(event:FlexEvent):void 
        {
            CursorManager.removeBusyCursor();
        }                   
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top