History management is disabled for this Accordion : Accordion « Components « Flex
- Flex
- Components
- Accordion
History management is disabled for this Accordion

<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" width="600"
height="800">
<mx:Accordion historyManagementEnabled="false" width="100%"
height="50%">
<mx:VBox label="History management is DISABLED.">
<mx:TextInput text="View 1" />
</mx:VBox>
<mx:VBox label="View 2">
<mx:TextInput text="View 2" />
</mx:VBox>
</mx:Accordion>
</mx:Application>
Related examples in the same category