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>
link|improve this question

Have you tried includeInLayout=false? – alxx Oct 1 '10 at 5:46
feedback

11 Answers

up vote 5 down vote accepted

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:

function hideFoo():void {
    this.theAccordion.removeChild(this.vboxFoo);
}

You'll probably want to keep a reference to the "hidden" child so that you can add it later again.

link|improve this answer
Does this affect the layout? – Feet Jan 5 '09 at 2:26
I'm using this and it works perfectly! – Niels Bosma Jan 6 '09 at 22:04
You can easily automate this method by using states. – limscoder Dec 14 '09 at 19:06
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...

link|improve this answer
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:

public class AccordionHideHeader extends Accordion
    {
    	private var _hiddenHeader:Dictionary=new Dictionary();

    	public function AccordionHideHeader()
    	{
    		super();
    	}

    	public function hideHeader(header:DisplayObject):void
    	{
    		if (contains(header))
    		{
    			_hiddenHeader[header]=getChildIndex(header);
    			removeChild(header);
    		}


    	}

    	public function showHeader(header:DisplayObject):void
    	{
    		if (!contains(header))
    		{
    			addChildAt(header, _hiddenHeader[header]);
    			delete _hiddenHeader[header]
    		}
    	}

    	public function isHeaderHidden(header:DisplayObject):Boolean
	{						
		for (var key:Object in _hiddenHeader)
		{
			if (key==header)
				return true;				
		}

		return false;
	}
    }
link|improve this answer
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:

/**
 * http://blog.flexexamples.com/2008/05/30/preventing-users-from-clicking-on-an-accordion-containers-header-in-flex/
 */
package comps {
    import mx.containers.accordionClasses.AccordionHeader;
    import mx.events.FlexEvent;

    public class MyAccHeader extends AccordionHeader {
        public function MyAccHeader() {
            super();
            addEventListener(FlexEvent.INITIALIZE, accordionHeader_initialize);
        }

        private function accordionHeader_initialize(evt:FlexEvent):void {
            enabled = data.enabled;
        }
    }
}

Maybe my answer not relevant anymore for you, but i hope can help someone else who face the same problem.

link|improve this answer
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

link|improve this answer
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

link|improve this answer
feedback

Works for me accordionContainer.removeChildAt(index); !!!

link|improve this answer
feedback

<mx:Script>
	<![CDATA[


		private function hideFn():void
		{
			acc.removeChildAt(0);					
		}

		private function showFn():void
		{
			acc.addChildAt(helloBox  , 0);				
		} 

	]]>
</mx:Script>
<mx:VBox>
<mx:Accordion id="acc" width="200" height="200">	

	<mx:VBox id="helloBox" label="Test">

		<mx:Label text="hello"/>

	</mx:VBox>

	<mx:VBox label="Test2">

		<mx:Label text="hello again"/>

	</mx:VBox>

</mx:Accordion>

<mx:Button label="hide" click="hideFn()"/>
<mx:Button label="show" click="showFn()"/>
</mx:VBox>

link|improve this answer
feedback

Try this one

accrod.getHeaderAt(0).enabled=false; accrod.getHeaderAt(0).visible=false;

link|improve this answer
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.

link|improve this answer
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.

import flash.events.Event;

import mx.containers.Accordion;
import mx.core.UIComponent;

public class DynamicAccordion extends Accordion
{
public function DynamicAccordion()
{
}

private var allChildern:Array;

override protected function childrenCreated():void
{
    allChildern = new Array();
    for (var i:int = numChildren - 1; i >= 0 ; i--)
    {
        var child:UIComponent = getChildAt(i) as UIComponent;
        if (child)
        {
            child.addEventListener("includeInLayoutChanged",  childIncludeLayoutChangedHandler);
            if (!child.includeInLayout)
            {
                removeChild(child);
            }
            allChildern.push(child);
        }
    }
    allChildern = allChildern.reverse();

    super.childrenCreated();
}

private function childIncludeLayoutChangedHandler(event:Event):void
{
    var child:UIComponent = event.currentTarget as UIComponent;
    if (child.includeInLayout)
    {
        var index:int = allChildern.indexOf(child);
        addChildAt(child, index);
    }
    else
    {
        removeChild(child);
    }
}
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.