tags:

views:

47

answers:

1

Hi all,

Is it possible to expand/collapse a node in a JTree without having it selected? (not highlighted)

Thanks a lot

+1  A: 

You should be able to expand/collapse each node you care to by using the expand or collapse method. Here's a good example on javaalmanac.

http://www.exampledepot.com/egs/javax.swing.tree/ExpandAll.html

SOA Nerd