Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This question already has an answer here:

I have an app that uses dijit.layout.AccordionContainer with two "child containers"

When the map is loaded, one of the containers is open by default. I would like the default container to close and the second container to open when a button is clicked. Any idea how to do this?

I have tried using the selectChild() method but must be doing it wrong or am completely off base.

EDIT My HTML is:

<div dojotype="dijit.layout.ContentPane" id="leftPane" region="left" splitter="true">
        <div dojotype="dijit.layout.AccordionContainer">
      <div dojotype="dijit.layout.ContentPane" title="Table of Contents">
                        <div id="tocDiv">
                        </div>
                    </div>
                    <div dojotype="dijit.layout.ContentPane" title="Search Results" id="tab2">
                                                <div id="datagrid">
                                                <table data-dojo-type="dojox.grid.DataGrid" data-dojo-id="grid"  id="grid" data-dojo-props="rowsPerPage:'5', rowSelector:'20px'">
                                            <thead>
                                                <tr>
                                                    <th field="Parcel Identification Number" width="25%">
                            Parcel ID
                                                    </th>
                                                    <th field="Site Address" width="30%">
                            Address
                                                    </th>
                                                </tr>
                                            </thead>
                                        </table>
                                        </div>
                    </div>
        </div>
        </div>

where I am trying to open "tab2" on click via a function I have created for some other things I need to happen on click

JS:

function doFind() {             
        //Set the search text to the value in the box
        findParams.searchText = dojo.byId("parcel").value;
                grid.showMessage("Loading..."); //Shows the Loading Message until search results are returned.
        findTask.execute(findParams,showResults);
      }
share|improve this question
This kind of pure JavaScript/Dojo Question is more suited to Stackoverflow, rather than Gis.Stackexchange. – Devdatta Tengshe Feb 27 at 2:56

migrated from gis.stackexchange.com Feb 27 at 14:19

marked as duplicate by casperOne Mar 4 at 15:08

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 3 down vote accepted

You are fairly close.

I am assuming you are listening to your own button click event. If you don't please post up that section of the code if you can.

If so then you need to do this:

<accordian-container>.selectChild( <pane to open>);

You need to pass the pane to the selectChild method.

The accordion container is a type of stack container so this documentation should help:

http://dojotoolkit.org/reference-guide/1.8/dijit/layout/StackContainer.html

Here is a link to almost the same question on Stackoverflow: http://stackoverflow.com/questions/1190157/whats-the-best-way-to-programatically-open-a-pane-inside-dijit-accordioncontaine

share|improve this answer
Thanks. I have edited my question to show the code I am working with. – Craig Feb 26 at 18:49

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