Michael Griffin wrote:
Is it possible to open all accordion screens at once? I'd like to be able
to unroll the complete view of a flow instead of always having to navigate
one at a time. Any suggestions?

Why not use multiple accordions with one view each? Just resize them as and when you feel like.


<mx:VBox verticalGap="0" height="500">
<mx:Accordion height="100%">
<mx:VBox label="One" height="100%">
<mx:TextInput />
</mx:VBox>
</mx:Accordion>
<mx:Accordion height="100%">
<mx:VBox label="Two" height="100%">
<mx:TextInput />
</mx:VBox>
</mx:Accordion>
<mx:Accordion height="100%">
<mx:VBox label="Three" height="100%">
<mx:TextInput />
</mx:VBox>
</mx:Accordion>
</mx:VBox>

Manish




Reply via email to