Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
365 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 ...
4
votes
1answer
121 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 ...
4
votes
2answers
281 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 ...
4
votes
1answer
204 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 ...
4
votes
1answer
555 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
1answer
66 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
63 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 ...
2
votes
1answer
95 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 ...
2
votes
1answer
284 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 ...
2
votes
1answer
138 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 ...
1
vote
1answer
66 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 ...
1
vote
1answer
107 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 ...
1
vote
2answers
117 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 ...
1
vote
2answers
564 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 ...
0
votes
1answer
52 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 | ...
0
votes
0answers
51 views

How to load parent-child nodes into JXTreeTable from single query resultset (Grouping Columns)

I have a JDBC result set contains some rows of the same type but in two layers , some are the children of the others: TYPE | Label | Value Parent | 192.010 | 12 + Child | 192.011 | 5 + Child | ...
0
votes
2answers
337 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) { ...