The Web Design Group

... Making the Web accessible to all.

Welcome Guest ( Log In | Register )

2 Pages V  1 2 >  
Reply to this topicStart new topic
> Tree, Simple tree, damn -- it's all I want
tharpdevenport
post Feb 26 2007, 04:24 PM
Post #1


Advanced Member
****

Group: Members
Posts: 201
Joined: 25-October 06
Member No.: 571



I've Googled to death. I either get stuff too complicated, "Demo"s that hide the surce code, ones you have to buy or download, ones for people who know what they are doing and thusly don't need it all laid out for them.

I no nothing about DHTML or javascript. All I want -- without having to learn -- is what you see on the left here:

http://dhtml-menu.com/tree-examples/tree-menuxp.html


I already have the + and - symbols created and ready.

I want a tree menu that looks like that, except no pictures (with the exception of + and -).

Basic. That's all. Damn it's pissing me off. Must have looked in all hte wrong places, right? mad.gif
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Christian J
post Feb 26 2007, 04:42 PM
Post #2


.
********

Group: WDG Moderators
Posts: 9,661
Joined: 10-August 06
Member No.: 7



Will this one do? http://www.dynamicdrive.com/dynamicindex1/navigate1.htm
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
tharpdevenport
post Feb 26 2007, 05:06 PM
Post #3


Advanced Member
****

Group: Members
Posts: 201
Joined: 25-October 06
Member No.: 571



It should ... how the heck do I use the images I have created, instead of the crappy ones they got there?
When you click on the Plus box and get the minus. I got those two images already.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Christian J
post Feb 26 2007, 08:20 PM
Post #4


.
********

Group: WDG Moderators
Posts: 9,661
Joined: 10-August 06
Member No.: 7



From viewing the image properties I think they are called "open.gif" and "closed.gif". wink.gif
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
tharpdevenport
post Feb 26 2007, 08:46 PM
Post #5


Advanced Member
****

Group: Members
Posts: 201
Joined: 25-October 06
Member No.: 571



I think you severly under estimate my ability at understanding this. ;-)

From all the code I see posted, I don't know what to remove to get rid of the other images, and what to change to put mine in place of them. I don't see simple "open" and "close" -- a phrase I rarely get to use.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Darin McGrew
post Feb 26 2007, 08:57 PM
Post #6


WDG Member
********

Group: Root Admin
Posts: 8,365
Joined: 4-August 06
From: Mountain View, CA
Member No.: 3



Go to http://www.dynamicdrive.com/dynamicindex1/navigate1.htm

Under Step 2, follow the link to simpletreemenu.js

Look at lines 4 and 5 of this file.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
tharpdevenport
post Feb 26 2007, 09:12 PM
Post #7


Advanced Member
****

Group: Members
Posts: 201
Joined: 25-October 06
Member No.: 571



I copied the legal use stuff, put the script from the .js file before the </SCRIPT>, then used the code for the BODY and the images aren't showing.

In fact, they are listed with no clicking and the "expand all" and "contract all" aren't working.

???


I'm telling you all -- I don't know what I am doing. :-)

This post has been edited by tharpdevenport: Feb 26 2007, 09:13 PM
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Darin McGrew
post Feb 26 2007, 10:23 PM
Post #8


WDG Member
********

Group: Root Admin
Posts: 8,365
Joined: 4-August 06
From: Mountain View, CA
Member No.: 3



I'm confused. When it says:
QUOTE
Step 2: The above code references a few external files, which you need to save and upload to your webpage directory (right click each file and select "Save As"):
Did you do that?
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Frederiek
post Feb 27 2007, 03:55 AM
Post #9


Programming Fanatic
********

Group: Members
Posts: 5,146
Joined: 23-August 06
From: Europe
Member No.: 9



The images are defined in the javascript and applied as background-image through the script.
CODE
ddtreemenu.closefolder="closed.gif" //set image path to "closed" folder image
ddtreemenu.openfolder="open.gif" //set image path to "open" folder image

The CSS file also applies (probably default) background-images:
CODE
background: white url(list.gif) no-repeat left center;
and
CODE
background: white url(closed.gif) no-repeat left 1px;

This means that you have to change the image file names everywhere (.js and .css) to the names of your own images (including the path to them if necessary).


Actually, I have a feeling that the Folding Treeview Menu from javascriptkit.com will be more to your liking. The demo shows three slightly different menu's, from which you can choose. Leave out the dotted line images if you want to.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Christian J
post Feb 27 2007, 07:41 AM
Post #10


.
********

Group: WDG Moderators
Posts: 9,661
Joined: 10-August 06
Member No.: 7



QUOTE(Darin McGrew @ Feb 27 2007, 02:57 AM) *

Go to http://www.dynamicdrive.com/dynamicindex1/navigate1.htm

Under Step 2, follow the link to simpletreemenu.js

Look at lines 4 and 5 of this file.

Or you could simply right-click the three images shown at step 2 to get their file names, then name your own images the same. This might be simpler than finding & changing the file names in the javascript and CSS files.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Christian J
post Feb 27 2007, 07:45 AM
Post #11


.
********

Group: WDG Moderators
Posts: 9,661
Joined: 10-August 06
Member No.: 7



QUOTE(tharpdevenport @ Feb 27 2007, 03:12 AM) *

I copied the legal use stuff, put the script from the .js file before the </SCRIPT>

That sounds like you pasted the actual code from the JS file after the legal stuff. But

CODE
<script type="text/javascript" src="simpletreemenu.js">

already tries to load the external file "simpletreemenu.js".
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
tharpdevenport
post Feb 27 2007, 02:40 PM
Post #12


Advanced Member
****

Group: Members
Posts: 201
Joined: 25-October 06
Member No.: 571



Yes, I posted the actual code. I thought that's what I should do.

If I remove: src="simpletreemenu.js"

Will it reference the code instead?
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Darin McGrew
post Feb 27 2007, 02:47 PM
Post #13


WDG Member
********

Group: Root Admin
Posts: 8,365
Joined: 4-August 06
From: Mountain View, CA
Member No.: 3



At what point are the instructions provided by Dynamic Drive confusing you?
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
tharpdevenport
post Feb 27 2007, 02:58 PM
Post #14


Advanced Member
****

Group: Members
Posts: 201
Joined: 25-October 06
Member No.: 571



I thouht it meant save the code, which was in files that needed to be downloaded.


Anyway, I usually try to go out of my way dealing with java or anything like that, since I have yet to learn it.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
tharpdevenport
post Feb 27 2007, 03:09 PM
Post #15


Advanced Member
****

Group: Members
Posts: 201
Joined: 25-October 06
Member No.: 571



All I have done is serve to confuse myself:

http://rejectedfilmscores.150m.com/WKGC/Archive.html
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Darin McGrew
post Feb 27 2007, 04:20 PM
Post #16


WDG Member
********

Group: Root Admin
Posts: 8,365
Joined: 4-August 06
From: Mountain View, CA
Member No.: 3



A few things I noticed...
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
tharpdevenport
post Feb 27 2007, 04:52 PM
Post #17


Advanced Member
****

Group: Members
Posts: 201
Joined: 25-October 06
Member No.: 571



The first one is from the legal notice area. I jsut copied and pasted like it said.

Second: simpletree.css -- I put the code direct into the page, foregoing the file.

Third: PLUS is showing up fine for me
http://rejectedfilmscores.150m.com/WKGC/plus.GIF


As to the DocType: I have NO IDEA what to use. Someone gave me a link, here, and it didn't help me at all on which to choose. I asked which I should use, and was told STRICT. That is why.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Darin McGrew
post Feb 27 2007, 04:58 PM
Post #18


WDG Member
********

Group: Root Admin
Posts: 8,365
Joined: 4-August 06
From: Mountain View, CA
Member No.: 3



QUOTE(tharpdevenport @ Feb 27 2007, 01:52 PM) *
Third: PLUS is showing up fine for me
http://rejectedfilmscores.150m.com/WKGC/plus.GIF
URLs are case sensitive. http://rejectedfilmscores.150m.com/WKGC/plus.gif is not the same as http://rejectedfilmscores.150m.com/WKGC/plus.GIF
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
tharpdevenport
post Feb 27 2007, 05:05 PM
Post #19


Advanced Member
****

Group: Members
Posts: 201
Joined: 25-October 06
Member No.: 571



Fixed it, but still not working, as can be seen. And I fixed the DocType, and removed the extra table to see code more clearly.


It's amazing it's turning out to be this hard for me.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Darin McGrew
post Feb 27 2007, 05:15 PM
Post #20


WDG Member
********

Group: Root Admin
Posts: 8,365
Joined: 4-August 06
From: Mountain View, CA
Member No.: 3



QUOTE
It's amazing it's turning out to be this hard for me.
I don't find it amazing:
QUOTE
All I want -- without having to learn -- is [...]

User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post

2 Pages V  1 2 >
Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 



- Lo-Fi Version Time is now: 27th April 2024 - 07:03 AM