I know that this question is being asked before but I did not get proper solution.
I read about outline but that was just opposite of what I want i.e. JTable inside JTree
I want to display data in a JTable but it is stored as different groups,so these groups
are node of JTree when I expend one group(node) the JTable of that group is shown.

I went through this article in oracle :Creating TreeTables in Swing:part 1

This was pretty old and not working on my version of java(I don't know why !),so I went
through the next part of TreeTable :Creating TreeTables in Swing: Part 2

The whole code was comparatively new, as it was using "javax.swing" in place of
"com.sun.java.swing" but the problem I faced here was one file named as
"FileSystemModel2.java" was missing it is modified from previous version so I can't work
with old one.There are some method added to new "FileSystemModel.java".How do I inform
them about this missing file or if you have different approach please let me know.

What I want to achieve is shown in picture below :


Image implementing JTreeTable

This image was from "LastPass" and I want to make my own password manager as my project
So please help me with this I am so close but yet I can't move further.

link|improve this question

75% accept rate
1  
please read this thread stackoverflow.com/questions/7122901/java-swing-table-tree – mKorbel Aug 27 '11 at 22:28
@mKorbel thank you. – Nav S Aug 27 '11 at 22:47
1  
Why not JSplitPane? Tree on left; selected node's table on right. – trashgod Aug 28 '11 at 0:49
feedback

1 Answer

up vote 3 down vote accepted

The SwingX project contains a ready-made TreeTable

http://swingx.java.net/

The downloads are a bit hard to find, so here is the link:
http://java.net/downloads/swingx/releases/1.6.2/

A short article about using that component can be found here:
http://sandarenu.blogspot.com/2008/02/treetable-in-java-using-swingx.html

link|improve this answer
Thank you I was worried because swingx download link were not working before,thanks again. – Nav S Aug 28 '11 at 12:53
+1 for adding a link to our hard-to-find download section, thanks :-) – kleopatra Aug 28 '11 at 14:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.