Note that there are some explanatory texts on larger screens.

plurals
  1. POHow do I dynamically show and hide an entire TabContainer using DOJO?
    primarykey
    data
    text
    <p>DOJO seems to have some quirks here. I specifically need to have the TabContainer hidden when the page loads, but then become visible after the user clicks a button. The first thing I tried is setting style.display = "none" to start, and then setting style.display = "block" on the click event. Unfortunately, this only partially works- the page will render an invisible box in the right location/dimensions, but not render the actual contents. The box's contents only get rendered when triggered by something else (for example, going to a different FF tab or suspending/resuming firebug will make the box render).</p> <p>If the style.display property is set to be visible on page load, everything works fine. You can toggle the display property and it shows or hides the tabcontainer properly. But if it's set to "none" on page load, it screws up. </p> <p>I tried a workaround of setting the style.display property to "" in the HTML but then immediately setting it to "none" in the Javascript, but it still fails- the change occurs too soon and it needs to happen after the tabcontainer renders (which can take a second or two). </p> <p>Some stripped sample code:</p> <p>HTML:<br> <code>&lt;div id="tabContainer" dojoType="dijit.layout.TabContainer" style="width:500px; height:100px;display:none;"</code>><br> <code>&lt;/div</code>> </p> <p>and then the Javascript to show the tab on a user click: </p> <pre><code>function initTabs() { var tabContainer = dojo.byId('tabContainer'); tabContainer.style.display = 'block'; } </code></pre> <p>How can I dynamically show/hide a TabContainer without having it start in the shown state?</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload