Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flex tab navigator: initialize hidden tabs

My problem: I have a tab navigator, with many forms in each tab. But I have a single global save button. Problem is, if I don't open a Tab, it doesn't get initialized and therefore the forms it contains do not exist..

How Can I make it as if the user had clicked on every tab?

like image 390
luca Avatar asked Dec 02 '09 11:12

luca


1 Answers

set its creationPolicy to "all"

<mx:TabNavigator creationPolicy="all">
    <!--Children-->
</mx:TabNavigator>
like image 150
Amarghosh Avatar answered Sep 28 '22 07:09

Amarghosh