jeorg
11-15-2002, 11:00 AM
I am looking for a tree view
it must work for XHTML transitional and new browsers
thank you
it must work for XHTML transitional and new browsers
thank you
|
||||
Tree viewjeorg 11-15-2002, 11:00 AM I am looking for a tree view it must work for XHTML transitional and new browsers thank you ronaldb66 11-15-2002, 12:52 PM Do you mean a menu system looking like windows explorer? Try NosTree (http://javascriptkit.com/script/script2/nostree/index.shtml) on Javascript Kit (http://www.javascriptkit.com/) or Smart Folding Menu Tree script (http://www.dynamicdrive.com/dynamicindex1/navigate1.htm) on Dynamic Drive (http://www.dynamicdrive.com/). If you search for "menu tree script" i'm sure there's more to find. ronaldb66 11-15-2002, 01:02 PM To prove my point: i searched "menu tree script", and found the above mentioned, and two more: Animated vertical menu tree script (http://simplythebest.net/scripts/dhtml_script_106.html) (SimplyTheBest) and AnimTree (http://dhtmlkitchen.com/dhtml/ui/menutree/index.jsp) (DHTMLKitchen). jeorg 11-15-2002, 01:08 PM Thank you very much Ronald , exactly what I was looking for ! beetle 11-15-2002, 02:33 PM Note: The Smart Folding Menu Tree on Dynamic drive isn't valid XHTML. It uses multiple-identical ids to achieve it's effects. I'm in the process (95% finished) of writing a better, easier to use, more effecient, more compatible version of this script (well, not really a version, just the same appearance, all the code is mine from the ground up) Check it out here (http://www.lanwizards.com/navtest/test.htm) As far as windows-style folder trees, this one (http://www.destroydrop.com/javascripts/tree/) is the best/most compatible I've seen. jeorg 11-16-2002, 08:30 AM thank you very much for the links and your work it is very strange to find so many dhtml only IE compatible and nearlly nothing XHTML compatible jeorg 11-16-2002, 08:47 AM the best i have seen and for XHTML I have put aall the nodes into an external javascript var Tree = new Array; // nodeId | parentNodeId | nodeName | nodeUrl Tree[0] = "1|0|Page 1|#"; Tree[1] = "2|1|Page 1.1|#"; ect.... so I can Write it from my database what will be great is to read directly a xml file with nodes from je javascript <nodes> <node nodeId="1"> <parentNodeId>3</parentNodeId> <pageName>Home</pageName> <pageUrl>default.aspx</pageUrl> </node> </nodes> |
| |||
EZ Archive Ads Plugin for vBulletin Copyright 2006 Computer Help Forum