Click here to Skip to main content
15,884,099 members
Articles / Programming Languages / Javascript
Article

JScript tree control menu

Rate me:
Please Sign up or sign in to vote.
4.00/5 (12 votes)
25 Jan 2004 52.8K   1.4K   24   2
JScript tree control menu

Introduction

This is a tree control menu in JavaScript. Usage is simple and convenient.

Explanation

I will introduce this tree control embodying to JavaScript. This menu will be more accurate than other such controls. First point that this control differs with other controls is that this is embodied by multiplex distribution. It is actually possible, though some people think that multiplex arrangement is impossible with JavaScript.

JavaScript
Item[iLength]  = new Array();
Item[iLength][0] = parentItem;
Item[iLength][1] = description;
Item[iLength][2] = hreference;
Item[iLength][3] = target;
Item[iLength][4] = iDepth;
Item[iLength][5] = true;

I enabled multiplex arrangement by assigning distribution (that is new again) on the 0th arrangement article. In this way, that we have an embodied arrangement of multidimensional items.

And I will explain about the code that changes the tree node image. First, see code.

JavaScript
DocWrite("<img id=wsTreeNodeImg_" + i + 
  " src='" + ImgDir + TempNodeImg + "' border='0'>"); 
...
//case NS6

Doc.getElementById(ItemName + iItem).src = ImgName;
//case IE6

Doc[ItemName + iItem].src = ImgName;

Method that checks for browser:-

JavaScript
if (document.all) { //IE4
 Doc = document.all;
 browserVersion = 1;

}else if (document.layers) { //NS4
 Doc = document.layers;
 browserVersion = 2;

}else if(document.getElementById) { //NS6
 Doc = document;
 browserVersion = 3;

}else { //other
 Doc = document.all;
 browserVersion = 0;
}

First, I create wsTreeCtrl's instance. And I call initialization function (initializeDocument).

JavaScript
m_wsTreeCtrl = new wsTreeCtrl();
m_wsTreeCtrl.initializeDocument();

Now, I put items to add in the tree through InsItem function. The first parameter is the parent item (in some cases, it is child item.), the second parameter establishes the text to be seen, and the third is the hyper link, and I establish target of hyper link finally. The following is the code that establishes tree of contents such as an upside image.

JavaScript
iItem = m_wsTreeCtrl.InsItem(null, "Profile", "", "_blank");
m_wsTreeCtrl.InsItem(iItem,
  "whitespray", "http://whitespray.com/">http://whitespray.com/", "_blank");

iItem = m_wsTreeCtrl.InsItem(null, "Homepage", "", "_blank");
m_wsTreeCtrl.InsItem(iItem, "jongha.pe.kr",
  "http://jongha.pe.kr/">http://jongha.pe.kr/", "_blank");
m_wsTreeCtrl.InsItem(iItem, "whitespray.com",
  "http://whitespray.com/">http://whitespray.com/", "_blank");
m_wsTreeCtrl.InsItem(iItem, "hizine.net",
  "http://hizine.net/">http://hizine.net/", "_blank");

iItem = m_wsTreeCtrl.InsItem(null, "Email",
  "mailto:ahn@jongha.pe.kr">mailto:ahn@jongha.pe.kr", "_blank");

m_wsTreeCtrl.GenerateCode();
m_wsTreeCtrl.RecudeAllTree();

function Recude() {
 m_wsTreeCtrl.RecudeAllTree();
}

function Expand()  {
 m_wsTreeCtrl.ExpandAllTree();
}

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer
Korea (Republic of) Korea (Republic of)
Computer Programmer

Comments and Discussions

 
GeneralOne Indent Bug Pin
8-Aug-04 18:26
suss8-Aug-04 18:26 
GeneralRe: One Indent Bug Pin
Jong-Ha Ahn10-Aug-04 17:45
Jong-Ha Ahn10-Aug-04 17:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.