I have to make something that looks like directory browsing. I was asked to make it as a hierarchy, spreading from top node down.
One idea is emulation of WinExplorer directory tree, but that kinda sucks (not very pretty).
Each node can have none, one, two or even hundreds of children. Also, I prefer to do it all in one page, so that user doesn't have to reload the page every time he goes one level deeper.
Any ideas on design of this? JavaScript is allowed, but I'd like to avoid browser-specific tricks (targeted audience are mostly Linux users).
Thanx!