Click here to Skip to main content
15,891,473 members
Articles / Web Development / CSS
Article

JScript Tree List Control with Resizable Columns

Rate me:
Please Sign up or sign in to vote.
4.65/5 (20 votes)
4 Oct 20023 min read 148.1K   2.1K   52   26
A tree list control written using CSS and JScript. Resizable columns!

Sample Image - jstreelistcontrol.gif

Introduction

Note: this code requires internet explorer 5.5 or better.

Following up on a tree list control I made using JScript and ASP (article here), I have created a new one which requires no ASP at all. It is not very fast in adding a whole lot of nodes at once, but expanding and contracting a node is instantaneous. Hovering over text in a row will cause the node for that row to highlight, making it easier to determine which node you are looking at.

Usage:

Create an instance of the tree:

JavaScript
var myTree = new TreeListControl("myUniqueID");
Add the columns:
JavaScript
myTree.addColumn([column name], [width], [alignment]);
Create the tree, specifying the parent element:
JavaScript
myTree.createIn(document.body);
Add Nodes:
JavaScript
myTree.addNode([parent ID], [relative path to icon], [expand branch?], 
                [column text 1], ..., [column text n]);
Delete a Node:
JavaScript
myTree.deleteNode([node ID]);

API

Methods:

TreeListControl ( strID )

Each instance of the tree must have its own unique identifier. This will become the .id property of the element, and is used in id assignment for all the nodes.

TreeListControl
. addColumn ( strTitle[, [intWidth[, strAlign]]] )

Adds a column to the tree. This must be done before the createIn() method of TreeListControl is called.

TreeListControl
. createIn ( objContainerElement )

This builds the main tree object and appends it to the object passed in.

TreeListControl
. addNode ( intParentID, strIconSrc, boolExpandChildren, strColumnText1, ..., strColumnTextN
)

Used to add an entry in the tree. The return value is the integer ID value for that node, which can be used to reference that node later if desired. First supply the parent ID for the node you are adding (0 or null if there is no parent), then a path to the icon to be used, then true/false depending on whether you want this branch to be collapsed or expanded, then the text for each column. If you use the string [[id]] in the text for the columns, it will be replaced with the actual id number that node is assigned. Also, if a node is added, and the specified parent does not exist, it will be queued and added when the parent id is added to the tree.

TreeListControl
. setText ( intNodeID, intColumnIndex, strText )

Changes a node's text in the specified column. If you use the string [[id]] in the text for the columns, it will be replaced with the actual id number that node is assigned.

TreeListControl
. deleteNode ( intNodeID )

Deletes the specified node and all its children.

TreeListControl
. deleteAllChildren ( intNodeID )

Deletes all the children of the specified node, but not the node itself.

TreeListControl
. redrawAllIcons ( )

Forces the tree to redraw all the line connection images that make the tree look correct. This must be called if nodes have been added while the property autoRedrawIcons was set to false.

Properties:

TreeListControl
. autoRedrawIcons

When a new node is added, this determines whether or not to recalculate which line connector images to draw so that the tree looks correct. If you are adding a whole bunch of nodes at once, set this to false, add the nodes, then set it to true. This should speed up the operation.

Example usage

JavaScript
function addone(parentid) {
    var opt = "[ Delete";
    opt += " | Add Child ]"
    var newid = xx.addNode(parentid,
                xx.pathtoicons+"icon_folder.gif", //the icon to use
                true, //expand this node's children?
                s[Math.floor(Math.random()*s.length)], //value for column 1
                s[Math.floor(Math.random()*s.length)], //value for column 2
                s[Math.floor(Math.random()*s.length)], //value for column 3
                s[Math.floor(Math.random()*s.length)], //value for column 4
                opt); //value for column 4
}

xx = new TreeListControl("tlc1"); //create an instance of the control 
                                  // and specify its unique identifier string
xx.autoRedrawIcons = false;       //don't calculate the icons until we've added
                                  // all the nodes (faster this way)
xx.pathtoicons = "treelistcontrol/treeicons/"; //specify the path to the tree 
                                               // icons
xx.addColumn("Things",250) //add some columns (label, width, alignment)
xx.addColumn("More Things",150)
xx.addColumn("Interesting Things",150)
xx.addColumn("Other Things",150)
xx.addColumn("Options",null,"right") //the last column should not have a width

xx.createIn(document.body); // create the tree, passing in the container object
                            //to generate the tree inside

s = new Array("yay","cool","wonderful","great","awesome","fluff",
              "green","beans","mean","machine", "high","balloons",
              "flying","for","fun","great","happy",
              "apples and cherries","bump"); //make some random text values
for(var z=0; z<50; z++){
    addone(Math.floor(Math.random()*z));
}

xx.autoRedrawIcons = true; //remember to set this back to true so that future 
                           //nodes added will be drawn correctly
xx.redrawAllIcons(); //since no icons were drawn, redraw all of them

History

5 Oct 2002 - Updated source code

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
Web Developer
Australia Australia
Web application developer, graphic designer, aspiring entrepreneur, snowboarder and electronic music afficianado.


Comments and Discussions

 
QuestionCan't Print if the page more than one page Pin
erros2218-May-09 20:06
erros2218-May-09 20:06 
GeneralWow ! Pin
satsat19-Mar-07 13:55
satsat19-Mar-07 13:55 
Questionresizing problem Pin
Muharrem DEMİR30-Jul-06 4:05
Muharrem DEMİR30-Jul-06 4:05 
Generaltree binding Pin
sunilmskr6-May-05 2:17
sunilmskr6-May-05 2:17 
GeneralTree lIst control rows get invisible problem Pin
sunilraje8-Jan-04 20:57
sunilraje8-Jan-04 20:57 
GeneralWonderful control Pin
rstgp29-Oct-03 22:25
rstgp29-Oct-03 22:25 
GeneralError with createIn(document.body) function Pin
Anonymous29-May-03 13:54
Anonymous29-May-03 13:54 
GeneralRe: Error with createIn(document.body) function Pin
Nathan Ridley29-May-03 19:04
Nathan Ridley29-May-03 19:04 
GeneralWow...and suggestions ...of course...;-) Pin
skyii28-Oct-02 11:02
skyii28-Oct-02 11:02 
Impressive.

I had written a table w/columns and used the dom to manipulate a TABLE element...but man was it slow after 50 rows... I even tried a wild combination of LI/UL and styles to get it...but ended up slow again...

Plus, I ended up at 24k...after compressing all I could find...!

Yours seems definatly faster...and smaller...what more can I say!?

I especially liked, at first glance, that it had no trouble adding another grid to the same page without crossover effects, and the resizeable columns.

Q: As far as I can see the only feature that will fail on 5.0 is the resizeable columns right? Not painful...

Suggestions...
Hidden Columns:
I didn't see a means of attaching non-displayed columns/data values to a node -- atleast I havn't found it yet. But it would be useful to have a grid on left side of page, or top, and another div/textarea below...when you pass over the a node, display the hidden associated column's value in the textarea...

Expand-Fetch from server more info:
I've been using mine so that when you click on a node that has children, it expands...if it doesn't, ChildCount will equal -1, or 0... if -1, it's still possible that there are children that could be added, but need to initiate a check with the server... In other words, some kind of Event to hook into, and decide what to do. This kind of process allows for an initial query of records...but only the base amount, as user navigates, fetches more... You don't need to render everything at once, then worse, be static from that point onwards...

Speed.
the solving of the lines indicating the depth of each node is really pretty, but necessary on the web? In an intranet, not aweful -- but on the net -- that's a LOT of image fetching... anyway you could insert a flag to turn that off to increase rendering and transmission speed? It's about the only thing I can think of to increase speed -- and wouldn't kill the look/functionality.

Columns BEFORE the Tree graphics...
Also, using secondary status/email/etc/icons on the far left would be awesome...to the left of the tree icons, etc... Can such be done?

Column Sorting
I understand that one doesn't want to bloat the grid with a function that might never be used -- but it could be in a secondary file (since prototypes can be spread across files).... Column Sorting!!! That is the uber-function that would be increadible... Of course, there are two sorts of Column sortings when dealing with trees OMG | :OMG: Sorting children per node, or sorting the whole thing as one lump....

Functions that would be need
NodeReplace/Update
FindNodeMatching(ColNo, Text)




I'll be tearing apart your code and looking at things over the next 3 weeks (right now, am under the gun, so it has to hold about 2 weeks)... but your grid really really is interesting. Didn't know you could do some of the things you are doing -- without using tables.


Hats Off!



GeneralRe: More thoughts (after looking at the code). Pin
skyii29-Oct-02 7:13
skyii29-Oct-02 7:13 
GeneralRe: More thoughts (after looking at the code). Pin
Nathan Ridley29-Oct-02 10:23
Nathan Ridley29-Oct-02 10:23 
GeneralAnother suggestion Pin
ashman_webdev7-Oct-02 19:23
ashman_webdev7-Oct-02 19:23 
GeneralRe: Another suggestion Pin
Nathan Ridley8-Oct-02 0:12
Nathan Ridley8-Oct-02 0:12 
GeneralAwesome work ! Pin
Ranjeet Chakraborty3-Oct-02 10:14
Ranjeet Chakraborty3-Oct-02 10:14 
GeneralWow! Pin
Megan Forbes24-Sep-02 9:13
Megan Forbes24-Sep-02 9:13 
GeneralX-browser Pin
Martrix10124-Sep-02 0:00
Martrix10124-Sep-02 0:00 
GeneralRe: X-browser Pin
Nathan Ridley24-Sep-02 13:09
Nathan Ridley24-Sep-02 13:09 
GeneralRe: X-browser Pin
Anonymous26-Sep-02 9:20
Anonymous26-Sep-02 9:20 
GeneralRe: X-browser Pin
Daniel Turini3-Oct-02 5:34
Daniel Turini3-Oct-02 5:34 
GeneralRe: X-browser Pin
Dave Comer15-Oct-03 6:02
sussDave Comer15-Oct-03 6:02 
GeneralRe: X-browser Pin
Nathan Ridley15-Oct-03 14:05
Nathan Ridley15-Oct-03 14:05 
GeneralExcellent! Pin
Philip Patrick22-Sep-02 22:15
professionalPhilip Patrick22-Sep-02 22:15 
GeneralImpressed Pin
Paul Watson19-Sep-02 21:14
sitebuilderPaul Watson19-Sep-02 21:14 
GeneralRe: Impressed Pin
Nathan Ridley22-Sep-02 17:45
Nathan Ridley22-Sep-02 17:45 
GeneralSuggestion Pin
Eric Lacroix19-Sep-02 17:00
Eric Lacroix19-Sep-02 17:00 

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.