How do I hide a child in a accordion? Using visible doesn't seem to work and enabled isn't what I'm after.
<mx:Accordion>
<mx:VBox width="100%" height="100%" label="Foo" id="viewOverview" visible="false">
...
</mx:VBox>
...
</mx:Accordion>
|
How do I hide a child in a accordion? Using visible doesn't seem to work and enabled isn't what I'm after.
| |||
feedback
|
|
I think you can't hide it. Strange that the visible property doesn't work... Anyway, I would control the children through code and remove and insert them as needed by the app. Hiding:
You'll probably want to keep a reference to the "hidden" child so that you can add it later again. | |||||||
|
feedback
|
|
This isn't an answer, just some curious things I found out while trying to find another solution to this problem: Accordion headers have a visible property and a setActualSize method. The latter takes a height and width, and setting each to zero... acc.getHeaderAt(0).setActualSize(0,0); ...accomplishes the same thing as setting visible = false, that is it hides the contents of the header, but does not remove its area from the accordion. I was hoping to trick the accordion into hiding the child, but no such luck...nonetheless, it might be a path to continue to try. If I get more time I will continue to explore but I'm out of bandwidth at the moment... | |||
|
feedback
|
|
You can also create a descendant of accordion with methods like showHeader, hideHeader, isHeaderHidden that contains hash table to keep track of hidden elements similar to the one below:
| ||||
|
feedback
|
|
Sorry I'm not agree with removing child, because you will having problem when adding it back to its position in exact order. Example: If you have 5 page in accordion, you remove child 1 and 3, now in any condition you want number 3 back to acordion how do you put it back? because the index is not 3 anymore (rember that 1 is removed too). I found a good solution here. In short you make your own acordion with enalbe and disable ability where enable and disable define on the child container. here i paste the acordion code:
Maybe my answer not relevant anymore for you, but i hope can help someone else who face the same problem. | |||
|
feedback
|
|
I think you might have to actually remove the accordion child itself (e.g. using the State removeChild() mechanism). If you need to preserve the object itself, just keep a reference to it in a global variable. Cheers | |||
|
feedback
|
|
Accordion controls always have 1 child open. By opening another child, the current one will close. If you want to have more than 1 child open at a time or have all children closed, you can use the VStack component available at: http://weblogs.macromedia.com/pent/archives/2007/04/the_stack_compo.html | |||
|
feedback
|
|
| |||
|
feedback
|
|
Try this one accrod.getHeaderAt(0).enabled=false; accrod.getHeaderAt(0).visible=false; | |||
|
feedback
|
|
Here my solution : http://weflex.wordpress.com/2011/01/25/flex-accordion-hideshow-headers/ I copied and modified the code of the Accordion, so if a child has its "includeInLayout" property to false, it won't be displayed. | |||
|
feedback
|
|
You can override Accordion logic and user includeInLayout property to control visibility of children. This will work if you set all children in MXML.
| ||||
|
feedback
|