Tagged Questions

Java Swing component that displays a set of hierarchical data as an outline.

learn more… | top users | synonyms

7
votes
5answers
14k views

Right-click context menu for Java JTree?

I'm trying to implement pop-up menus in Java JTree. I've sub-classed DefaultTreeCellRenderer (to change node appearance) and DefaultTreeCellEditor (to create Components to attach event listeners to, ...
6
votes
1answer
1k views

Drag and Drop nodes in JTree

I am having difficulty creating a JTree that allows the nodes to be reorganized by dragging and dropping them in the JTree. This seems like it should be relatively simple. I have looked at examples ...
6
votes
4answers
499 views

java swing vs mvc: is this pattern indeed possible?

I am new in swing, but managed to create a descend gui. My problem though is that I was not able to apply the patterns suggested in references/tutorials, mainly the MVC pattern. Is it me, or in JTree ...
6
votes
2answers
725 views

Where are these error and warning icons as a java resource?

I've got a custom tree cell renderer that I'm using to render custom icons a JTree, and I really like the warning icon and the error icon that JOptionPane displays for both warning messages and error ...
6
votes
3answers
3k views

Best way to implement tooltips for JTree?

since JTree & TreeModel don't provide tooltips straight out-of-the-box, what do you think, what would be the best way to have item-specific tooltips for JTree? Edit: (Answering my own question ...
5
votes
1answer
83 views

Jtable as a Jtree Node

I know you can create a table and add a JTree as a column. But what I want to do is the complete opposite. Check the image and tell me if this is possible. Thanks! UPDATE: By using MKorbel's code ...
5
votes
1answer
95 views

JTree make only leaves draggable

I need to make only leaves of a JTree draggable but the following code snippets makes every node in the tree draggable: tree.setDragEnabled(true); How can I restrict the draggable element to ...
5
votes
1answer
81 views

Is there a way to detect if a drop is about to take place on a JTree?

I have a JTree where users can drop elements from other components. When the users hovers over nodes in the tree (during "drop mode") the most near lying node is highlighted. This is achieved in the ...
5
votes
1answer
612 views

Populating JTree from database

I have a table with fields category_id, category_name and parent_category_id. And parent_category_id has values from category_id which represents the parent child relationship. I dont have any fixed ...
5
votes
2answers
520 views

Change JTree node icons according to the depth level

I'm looking for changing the different icons of my JTree (Swing) The java documentation explains how to change icons if a node is a leaf or not, but that's really not what I'm searching. For me it ...
5
votes
2answers
963 views

JTree rendering with JCheckBox nodes

I am attempting to modify the standard Swing JTree to intermingle nodes with and without checkboxes. This is an example: When I attempt to check/uncheck one of the checkboxes (the 'User 01' node ...
5
votes
2answers
2k views

JTree with checkboxes

I need to add checkboxes to a JTree. A custom TreeCellRenderer/TreeCellEditor seems like the right approach. So far I used the CheckBoxNodeRenderer approach in this webpage. It works OK except for two ...
5
votes
6answers
4k views

Hiding/filtering nodes in a JTree?

I have a data object represented in a TreeModel, and I'd like to show only part of it in my JTree--for the sake of argument, say the leaves and their parents. How can I hide/filter the unnecessary ...
4
votes
2answers
57 views

Put JTable in the JTree

in connection with thread Jtable as a Jtree Node I put JTable to JTree, but JTree View isn't rendered correctly on start_up, how can I setPreferredSize for JTable, because ...
4
votes
1answer
141 views

Populating a JTree

I'm having an array of objects of class A which contain an array of objects of class B. I've got quite a few questions: (Coding examples would be of great help) How can I use a JTree with parent ...
4
votes
1answer
192 views

Beans Binding for JTrees

Is beans binding for JTrees currently supported? I've found this forum post from 2008, but I didn't know if there was any development. If it does exist does anyone know where i might find some ...
4
votes
1answer
523 views

JTree Line Style and Nimbus

I am using the Nimbus look and feel. According to this link, you should be able to achieve 3 different line styles with your JTree: While using the following code: ...
4
votes
1answer
342 views

Tree in scala swing

I want to use a tree in my Scala swing application, but the component isn't available in the API. Does a wrapper of JTree exists ? If not, do you have any advice for making it ? Thanks
4
votes
2answers
3k views

Changing the Node image of a JTree dynamically

I am using a CustomCellRenderer to display nodes of a JTree to display image with a node as shown below :- class CustomTreeCellRenderer extends DefaultTreeCellRenderer{ public Component ...
4
votes
4answers
2k views

Swing question / JTree / custom tree model

I'm having a problem and hope, someone knows what's going wrong and why and is able to give me the explanation of what I'm missing out right now to make that thing work as suggested. I have a JTree ...
4
votes
4answers
1k views

Java TreeNode: How to prevent getChildCount from doing expensive operation?

I'm writing a Java Tree in which tree nodes could have children that take a long time to compute (in this case, it's a file system, where there may be network timeouts that prevent getting a list of ...
3
votes
3answers
56 views

Horizontally flipping a JTree

I want to visualize a set of linked objects by focusing on one element and showing all referenced objects and descendants in a tree to the right. That's business as usual. But if i want to show the ...
3
votes
3answers
135 views

JTree: speed up drawing of 1000+ children nodes from objects retrieved from database?

When I retrieve 1000+ java objects from the database, it is done very quickly. I end up with List<Object> matching my query. The problem is drawing these objects onto the Jtree. For example, I ...
3
votes
1answer
64 views

Custom node icon for JTree when disabled

I have a JTree in which I am displaying different icons according to a nodes depth in the tree, which I have done using the following code: public Component getTreeCellRendererComponent(JTree tree, ...
3
votes
1answer
80 views

Java JApplet: Button-Tree problem

This applet should take the tree stored in menuTree and follow a menu construction based on it. currentNode stores the menu the applet is currently on, and each of its children should be displayed as ...
3
votes
2answers
182 views

JTree: Selecting all nodes programatically

I have a Jtree, and 2 buttons to select and unselect all nodes. I made an attempt like this: selectAll = new JButton("Select all"); selectAll.addActionListener(new ActionListener (){ ...
3
votes
2answers
69 views

JTree does not show up

Why the JTree does not show up? Here is my code: initComponents(); JTree treeView; DefaultMutableTreeNode top = new DefaultMutableTreeNode("myBooks"); DefaultMutableTreeNode category ...
3
votes
1answer
79 views

Adding custom propery to a JTree node

I need to store some data in a JTree node. Is it possible to add a custom property to a node to hold my data?
3
votes
2answers
168 views

Renaming the JTree Node Manually in Java

I have created a jtree with the root node "RootNode" and some other nodes like "Node1","Node2", Node3". After creation of tree I want to rename the rootnode or any other node by manually. We can ...
3
votes
1answer
84 views

Swing JTree: It seems to be impossible to properly send treeStructureUpdated events to model listeners

I have a JTree displaying my own TreeModel. The TreeModel is loaded "on demand" from a database (somewhat ugly since partially done on the EDT, but thats not my issue here). There is a menu which will ...
3
votes
4answers
893 views

Java detect CTRL+X key combination on a jtree

i need an example how to add a keyboard handler that detect when ctrl+c , ctrl+x , ctrl+c pressed on a jtree. i were do this before with menu shortcut keys but with no success.
3
votes
2answers
377 views

Java Swing JTree TreeModel - how to do lazy inialization

I have a JTree in my swing app, to display a long list of data (int tree mode). the issue is that TreeModel loading all items during initialization and I don't need to load them all. in one screen ...
3
votes
1answer
111 views

How to create inverted JTree in Java?

Actually I'm interested to create an inverted JTree in Java in such a way that root exists at top and its child nodes at the next level and so on. As we know in case of simple JTree the child nodes ...
3
votes
3answers
429 views

JTree nodes' rendering and font changes

I have a problem with rendering nodes in JTree. When node's font is changed and node's text gets wider that way then node's text is cut and end of text replaced with dots. How to tell the JTree then ...
3
votes
1answer
185 views

Drop nodes in a JTree at different nesting levels

I am implementing drag and drop in a JTree. I want the user to be able to drop a node at different levels in the tree. In the example below, imagine that the user inserts an item between "grandchild ...
3
votes
1answer
1k views

Java Drag and Drop with JTree and modal dialog

I would like to implement drag and drop on a file-system backed JTree to allow users to easily move and copy files. I would like to show a confirmation dialog when users attempt to move or copy a file ...
3
votes
1answer
237 views

creating a JTree from a heap

Setup I have a heap with intLevels levels and e elements (both ints) stored in a 2D array of Objects, heapArray, which is intLevels tall and Math.pow(2, intLevels) wide. For hypothetical purposes, ...
3
votes
1answer
439 views

store state/expanded nodes of a jtree for restoring state

I am working with JTree. I would like to know what is best the way to know which nodes are expanded in a JTree, so as to save its state (i.e. save all expanded paths). So that if I call ...
3
votes
4answers
835 views

java swing: add custom graphical button to JTree item

i would like to add an additional button with a small icon to the right of an item in a JTree. can this be done? if so, how? thanks!
3
votes
1answer
267 views

Custom implementation of TreeModel refuses to repaint after call to treeNodesInserted

I'm using a custom TreeModel for a JTree. I have an issue when I insert a new node into my TreeModel, and then call treeNodesInserted(TreeModelEvent) on all my TreeModelListeners. I think the issue ...
3
votes
1answer
1k views

JTree node labels change often but width is cached

Currently, I'm using a custom TreeCellRenderer to handle label and icon changes for my JTree. The problem comes when I need to change the text on a few nodes. The TreeCellRenderer works great in that ...
3
votes
1answer
351 views

JTree with left and right-aligned text in cells?

What I'm trying to do is create a JTree with each cell containing normal text but also containing a right-aligned text for each cell (right-aligned to the edge of the tree, regardless of the hierarchy ...
3
votes
2answers
2k views

Java: How to display an XML file in a JTree

I would like to have a way to display the contents of an XML file in a JTree. I have already accomplished this using DOM, by implementing a custom TreeModel (and TreeCellRenderer). However it is very ...
3
votes
2answers
1k views

Creating Dynamic JTrees (Controlling Root Node Visibility)

I have a question about how to dynamically generate JTrees. Is there a way to set the Root Node invisible without making its children invisible too? I have tried to do the following but it shows all ...
3
votes
3answers
911 views

Speed up expand/collapse all nodes of a JTree

I have a JTree with about 100000 nodes or more. Now I want to expand the whole tree. To do so I use the solution I found here. My problem is that expanding such a large tree takes like 60 seconds or ...
3
votes
3answers
2k views

Help making a JTree with a JCheckBox

I have an unusual situation where I need to have a JTree with each node containing 2 checkboxes and a label (with the ability to add a listener to tell when any of the potential checkboxes are ...
3
votes
2answers
2k views

overriding JTree double-click to prevent node expansion?

It looks like there are 2 default mechanisms to expand a folder node in a JTree. One is to click on the expanded/collapsed icon next to a node. The other way is to double-click on the node itself. Is ...
3
votes
2answers
438 views

Swing: How could I use JTree with JTextPanes as nodes?

JTree uses DefaultTreeCellRenderer as cell renderer. This class is a subclass of JLabel. I want to use JTree with more complex elements than JLabel, such as JTextPane. Problem is: I can't subclass ...
3
votes
1answer
1k views

how to set JTree “ctrl” selection mode to be always enabled

I have a JTree that implements multi selection logic. This works great when I do all my selections using the mouse + Ctrl key pressed. If user makes selections with the Ctrl key unpressed it breaks ...
3
votes
1answer
555 views

Is there a way to have expander icons for multiple roots in a JTree?

I have a JTree with multiple "roots" (Of course, I actually have an invisible real root with multiple children). The nodes expand and collapse on double click, but there's no visual indication that ...

1 2 3 4 5 7