Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I used this http://www.treeview.net/ on my application, I need to make the tree expanded as it was before refresh.

The tree is called:

echo '<SPAN class=TreeviewSpanArea style="width:200px;height:486px;display:block;overflow:auto">
      <SCRIPT>initializeDocument();</SCRIPT>          
     </SPAN>';

The js:

function initializeDocument() 
{ 
preLoadIcons();
switch(navigator.family)
{
case 'ie4':
  browserVersion = 1 //Simply means IE > 3.x
  break;
case 'opera':
  browserVersion = (navigator.version > 6 ? 1 : 0); //opera7 has a good DOM
  break;
case 'nn4':
  browserVersion = 2 //NS4.x 
  break;
case 'gecko':
  browserVersion = 3 //NS6.x
  break;
case 'safari':
  browserVersion = 1 //Safari Beta 3 seems to behave like IE in spite of being based on  Konkeror
  break;
default:
  browserVersion = 0 //other, possibly without DHTML  
  break;
  }

   // backward compatibility
  if (PERSERVESTATE)
  PRESERVESTATE = 1;

  supportsDeferral = ((navigator.family=='ie4' && navigator.version >= 5 && navigator.OS != "mac") || browserVersion == 3);
  supportsDeferral = supportsDeferral & (!BUILDALL)
   if (!USEFRAMES && browserVersion == 2)
browserVersion = 0;
  eval(String.fromCharCode(116,61,108,100,40,41))

  //If PRESERVESTATE is on, STARTALLOPEN can only be effective the first time the page 
  //loads during the session. For subsequent (re)loads the PRESERVESTATE data stored 
  //in cookies takes over the control of the initial expand/collapse
  if (PRESERVESTATE && GetCookie("clickedFolder") != null)
   STARTALLOPEN = 1

  //foldersTree (with the site's data) is created in an external .js (demoFramesetNode.js, for example)
  foldersTree.initialize(0, true, "")

  if (supportsDeferral && !STARTALLOPEN) {
  foldersTree.renderOb(null) //delay construction of nodes
  }

  else {
   renderAllTree(foldersTree, null);

  if (PRESERVESTATE && STARTALLOPEN)
  storeAllNodesInClickCookie(foldersTree)

  //To force the scrollable area to be big enough
  if (browserVersion == 2) 
  doc.write("<layer top=" + indexOfEntries[nEntries-1].navObj.top + ">&nbsp;</layer>") 

   if (browserVersion != 0 && !STARTALLOPEN)
  hideWholeTree(foldersTree, false, 0)
  }

  setInitialLayout()

  if (PRESERVESTATE && GetCookie('highlightedTreeviewLink')!=null  &&    GetCookie('highlightedTreeviewLink')!="") {
  var nodeObj = findObj(GetCookie('highlightedTreeviewLink'))
  if (nodeObj!=null){
  nodeObj.forceOpeningOfAncestorFolders();
  highlightObjLink(nodeObj);
  }
  else
  SetCookie('highlightedTreeviewLink', '')
  }
  }

After refresh all items are collapsed. I need the the tree to stay expanded as it was before refresh page. Does anybody have any idea? Thanks in advance.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.