--- In [email protected], "Erich Cervantez" <[EMAIL PROTECTED]> wrote: > > Yes, the height of the Accordion would change whenever a user clicks a > header to open up that headers menu item contents. > > Right now, the first header "group" in the Accordion defaults to open > when the application loads. I'd like to have that first group closed > or collapsed initially and force the user to select a group. It would > be great if the Accordion had some sort of "defaultPosition" property > of "open" or "closed". I could extend the Accordion and add that > property however I have to figure out how to "close" the Accordion > first ;)
Have you thought of using includeInLayout to make the children of the containers populating the Accordion have no dimension? This will visually look like the accordion is closed. Like this Accordion --Canvas minHeight="0" label="Section 1" ----YourComponent includeinLayout="false" --Canvas minHeight="0" label="Section 2" ----YourComponent includeinLayout="false" Then when they click any tab, set the includeInLayout property of the child of the canvas to true. HTH; Amy

