flex tree busy cursor

240 Views Asked by At

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,

1

There are 1 best solutions below

0
On BEST ANSWER

found it :)

CursorManager.setBusyCursor() in overridden expandItem

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

private function onUpdateComplete(event:FlexEvent):void 
        {
            CursorManager.removeBusyCursor();
        }