JTreeTable is a Java Swing component that combines tree and table capabilities in one. It is an extension of the standard Swing library. One of implementations is available from Swing Labs, some other may exist.
-2
votes
0answers
29 views
display text file details in a tree structure
I have a text file grade.txt containing
sam,10th,maths,100
ani,11th,science,90
sam,10th,history,85
kira,9th,maths,80
I want to display these details in a tree structured table under the column ...
0
votes
0answers
66 views
Span columns/merge cells with Netbeans' Swing Outline?
How would I have a cell span multiple columns using Netbeans' Swing Outline? This is not in the documentation and I'm not sure where to even start.
Note that I'm trying to do the same thing with ...
1
vote
1answer
85 views
expand/collapse listener for netbeans outline
I am using org.netbeans.swing.outline
How can I setup an expand/collapse Listener to the generated Tree?
2
votes
4answers
271 views
How to present a hierarchical String list with checkboxes in Java Swing?
So. The ideas have been a few.. no good ones.. So here is the problem i have incountered and can not figure out a solution for.
I need to have a txt file containing a hierarchical list of things to ...
0
votes
1answer
72 views
Tree Table : links are not shown
I've created a custom Table structure by combining a JTree and JTable.
it looks like this:
addition of leafs can be done to any element.
But when I try to add a node to a row which has children ...
2
votes
3answers
190 views
Multi-leveled (nested?) Jlist in Java
Is there a way to create a JList that has more than one (I'm aiming at three) levels?
Something like this:
level 1 item
level 2 item
level 2 item
level 3 item
level 1 item
level 1 item
...
1
vote
2answers
204 views
JXTreeTable - manipulating checkboxes from an external application - possible?
Using Java code, I am tying to manipulate another, external Java swing application, for which I have no access to any information about how it was coded. Specifically, I am trying to manipulate a ...
0
votes
0answers
106 views
how to make JXTreeTable expandable by clicking on any cell
I need to expand my JXTree Table in Swingx,Java by clicking on any cell of row. Just like this .
Please help me to achieve it. Thanx in advance.
0
votes
1answer
506 views
Java JTable Expand Collapse Behaviour
Can anybody please point me the direction, how I can achieve below behavious using JTable?
http://www.jankoatwarpspeed.com/examples/expandable-rows/
I need some sample code to make image ...
2
votes
1answer
1k views
JXTreeTable: how to use ComponentProvider to set the renderer for one column
I'm using JXTreeTable to display some data and I want to use the provided mechanisms of SwingX to change the renderer for some columns.
I previously used a JXTable and custom implementations of ...
2
votes
1answer
292 views
JTreeTable selection listener indexes
I'm using a JTreeTable taken from the java sun example..
I have the following structure:
+1
+4
+7
which represents the 3 node collapsed..
-1
--2
---3
-4
--5
---6
-7
--8
---9
And this is the ...
5
votes
1answer
529 views
JTreeTable DnD crazy blinking drop cursor
I am using a slightly modified version of the Sun's example JTreeTable backed by my own model. That would be the third example (bookmarks one at ...
1
vote
1answer
174 views
JTable doesn't scroll up
I have JScrollPane with a JTreeTable. Typically my JTable contains a lot of items and app must set focus to specific row in treetable and scroll to it.
I'm using the following recommended code to set ...
0
votes
1answer
140 views
eclipse : treetable creating the tree from the second column
I managed to make a treetable using treeColumn() using various examples from the net and it appears like this
| Column1 | Column2 |
--------------------------------
|+ColItem1 | ...
2
votes
1answer
1k views
Implementing JTreeTable in swing
I would like to implement a JTreeTable. I saw the example in the official java website. I am a beginner to java and i am not able to understand that example. I have the tree node and child names as a ...
2
votes
1answer
274 views
JTreeTable display problem
I've the following problem..
I've created a JTreeTable and a model which extends AbstractTreeTableModel.
The problem is that my data are shown only if I call the ...
5
votes
2answers
3k views
How to show a tooltip on a mouse click
I have a JTreeTable and have successfully implemented a MouseMotionListener to show a tooltip whenever the mouse is over one of the cells. However when clicking on the cell the tooltip does not show ...
1
vote
1answer
340 views
JTreeTable model updating
I'm following the example of JTreeTable filesystem2 taken from the sun site http://java.sun.com/products/jfc/tsc/articles/treetable2/index.html#updating_the
My problem is that I can't update my model ...
2
votes
1answer
2k views
JTreeTable updating
I'm trying to use the example taken from the http://java.sun.com/products/jfc/tsc/articles/treetable2/index.html, in which I've substituted the filesystem model with my model.
I initially create a ...
4
votes
1answer
911 views
Creating JTable inside node of JTree
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 ...
11
votes
3answers
4k views
Java Swing table tree
When you open a XML in Eclipse, the content can be shown in as a tree structure like
The tree is "embedded" in a table and the content is showed in a seperate column.
This would be very nice to ...
3
votes
2answers
308 views
Horizontally expanding JTree
It may seem a little bit strange, but is there a way to make the last node of JTree expand horizontally rather than vertically?
My vertical tree nodes represent different discussion subjects ...
0
votes
2answers
1k views
Deleting node childs of a Java JTree structure
I have a ftp program that retrieve folder data each time expanded. It does this by using a model like this:
private void FilesTreeTreeExpanded(javax.swing.event.TreeExpansionEvent evt) {
...
1
vote
2answers
255 views
Multi Dimensional array to JTree in java
i want to assign a multidimensional array to jtree. how can i do this?
here is sample of an array:
ROOT:{ FolderA : {FileA,FileB} , FolderB: {FileA,FileB} } ....
Also i want to determine files and ...
5
votes
1answer
1k views
Is there a JTreeTable implementation that allows variable row height
I have been searching for a little while on this one. I need a JTreeTable that supports variable row height. Specifically, I want the rows that show the top level nodes to be taller than the child ...
2
votes
2answers
2k views
Using JTreeTable
I need to use a JTreeTable but even after searching for hours, I couldn't find any nice tutorial on JtreeTable or even a simple code from which I can understand.
It would be very helpful if anyone ...