vote up -1 vote down star

Possible Duplicate:
How does global Javascript object save state?

/**************************************************************************
 *
 * Function:    toggleVis
 *
 * Description: Following Function hides and expands the main column.
 *              
 *
***************************************************************************/
// Set the default "show" mode to that specified by W3C DOM
// compliant browsers

  var showMode = 'table-cell';


// However, IE5 at least does not render table cells correctly
// using the style 'table-cell', but does when the style 'block'
// is used, so handle this

  if (document.all) showMode='block';

// This is the function that actually does the manipulation

var States = { };

function toggleVis(col){

    if (!States[col] || States[col].IsOpen == null)
    {
        States[col] = {isOpen : true}; // This assumes the cell is already shown
        //States[col] = {isOpen : false}; // This assumes the cell is already hidden
    } 

    //mode =  States[col].IsOpen ? showMode : 'none';
    mode =  States[col].IsOpen ? 'none' : showMode; //starts from closed, next click need open

    cells = document.getElementsByName(col);
    for(j = 0; j < cells.length; j++) cells[j].style.display = mode;

    States[col].IsOpen = !States[col].IsOpen;
}

This function hides and displayed a column for a html table. When I call this function the object States toggles accordingly, true if expanded, false if hidden or none. After the function is executed once, what saves the last state of States so that it can be used in this function, when called again? Is it because the object States{} is declared as a global?

flag

58% accept rate
Why did you post this question twice? You have answers in this topic stackoverflow.com/questions/1100431/… – Brandon Jul 8 at 20:48
exact duplicate? stackoverflow.com/questions/1100431/… – Janusz Jul 8 at 20:49
Probably related to the major slowdown some people are seeing. Maybe an inadvertant double post but definitely a duplicate. – tvanfosson Jul 8 at 20:54
this question referes to the state within the function only. The other was specific to cookies. – Tommy Jul 8 at 20:54
actually very different questions........ – Tommy Jul 8 at 20:55
show 3 more comments

closed as exact duplicate by Mark Biek, Brian Agnew, tvanfosson, Joel Coehoorn, Ates Goral Jul 8 at 20:55

2 Answers

vote up 2 vote down check

Yes, the last line in the function stores the state into States:

States[col].IsOpen = !States[col].IsOpen;

And since States is declared outside of a function, it is global for the life of the page:

var States = { };
link|flag
vote up 1 vote down

This line saves the state:

States[col].IsOpen = !States[col].IsOpen;

Yes, it is global and therefore persisted after execution of the function.

link|flag

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