This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Other JSE/JEE APIs and the fly likes Which technology to use to render tree structure on UI. Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Other JSE/JEE APIs
Reply Bookmark "Which technology to use to render tree structure on UI." Watch "Which technology to use to render tree structure on UI." New topic
Author

Which technology to use to render tree structure on UI.

Lucky J Verma
Ranch Hand

Joined: Apr 11, 2007
Posts: 277
Hi all

I need to decide on a technology for a requirement to display tree on ui.
i have some data in java objects forms which has to be rendered in form of tree on UI.
java objects are going to be objects (Account object) .Each Account object can have nested Account objects inside.
One account can have many acconuts inside .
Technologies in my mind were:
Jquery tool
ANTLR.
XML
which one of them is good and easy to use.If any one has some examples on this, that would be great.
Also java-class structure equivalent i decide is :Account Class should have Map of Accounts.

Paul Clapham
Bartender

Joined: Oct 14, 2005
Posts: 16483
    
    2

That very much depends on what the UI is. Swing? Web application? Console? Something else?
Lucky J Verma
Ranch Hand

Joined: Apr 11, 2007
Posts: 277
MY UI is based on JSP/JSTL (taglibs,display tag lib) and includes javascript ,some small external javascript libraries and whole development is based on java 5 with Spring framework.

I am thinking to have Java code like this:
Paul Clapham
Bartender

Joined: Oct 14, 2005
Posts: 16483
    
    2

You asked about technology to display or render a tree structure. But you keep speculating about data structures which you would use to store a tree structure in your data model.

So what's your question? Are you really asking about how to display the tree, or how to store it?
Lucky J Verma
Ranch Hand

Joined: Apr 11, 2007
Posts: 277
Hi

Yes i am actually interested in how to display a tree structure and store it and i
mentioned java structure to tell readers my current state that i thought could be helpful in making some suggestions.


 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Which technology to use to render tree structure on UI.
 
Similar Threads
How to detect FocusLost on JPanel
Drawing Tree
representing data in tree structure way
Dynamic, server-side construction of the tree, reading from a database
Implementing N-Ary tree data structure in Java