4
votes
2answers
96 views
Where are these 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 …
4
votes
3answers
781 views
Best way to implement tooltips for JTree?
Hi,
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: (Ans …
4
votes
4answers
618 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 …
3
votes
2answers
233 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 wor …
2
votes
4answers
3k 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 e …
2
votes
4answers
1k views
Java JTree expand only level one nodes
With a JTree, assuming the root node is level 0 and there may be up to 5 levels below the root, how can I easily expand all the level 1 nodes so that all level 1 & 2 branches a …
2
votes
4answers
295 views
JTree gives ArrayIndexOutOfBoundsException?
I try to dynamically add nodes to a Java Swing JTree, and the user should be able to browse and to collapse hierarchy while nodes are constantly added. When I add a Thread.sleep(10 …
2
votes
1answer
177 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 visu …
2
votes
2answers
180 views
The Big Tree: When to Release Data in an RIA
This question is about a Java JTree or a Window .Net Tree (Winforms) or an Adobe Flex Tree.
In a client-server application (for Flex it's Web, really), I have a tree with hierarch …
1
vote
3answers
113 views
How to expand JTree nodes (in advance), but keep them invisible
Hi,
I seems to me that when i call
JTree.expandPath( path )
That by default all its parents are expanded as well.
But what i actually want to do is, set up specific invisib …
1
vote
2answers
141 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 i …
1
vote
6answers
585 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/filte …
1
vote
1answer
262 views
how to set JTree “ctrl” selection mode to be always enabled
Hello,
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 Ct …
1
vote
2answers
114 views
Not able to highlight the file in JTree
Hi,
I have created a JTree in which I want to highlight a file and if the directory containing the file is invisible, I need to expand it.
Ex:
I have created a JTree with the roo …
0
votes
2answers
31 views
How do I customize a JComboBox so that the pop-up is a JTree (instead of a list)?
I am trying to create a combo box so that I can put whatever control I prefer within the pop-up, in my specific case a JTree. Having a look at how the JComboBox is implement, the p …
