Flex Tree Control how to get the itemEditorInstance of a just added xml node
https://stackoverflow.com/questions/2146365
No correct solution
OTHER TIPS
You just have to override the createItemEditor
method, such as:
override public function createItemEditor(colIndex:int, rowIndex:int):void { super.createItemEditor(colIndex, rowIndex); itemEditorInstance.cacheAsBitmap = true; itemEditorInstance.opaqueBackground = 0xFFFFFF; itemEditorInstance.alpha = 1; }
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow