MirroredFate
MirroredFate

Reputation: 12816

How to make an expandable list with Java Swing

I need to make an expandable list using java swing. I will attempt to demonstrate:

Unexpanded:

 >[Expand me!]
 >[And me!]

Expanded:

 |[Expand me!]
     >[Expand us too!]
     >[Expand us too!]
     >[Expand us too!]
 >[And me!]

So, when you click on the "Expand me" portion of the list, another lists will drop down, possibly containing more expandable lists. If you were to click on it again, it's "sub-lists" would then retract. Pretty basic. And, as you can see, I am not looking for JComboBox, and I do not think JList can do this. If someone were to point me in the right direction, or give some programming examples, I would be grateful.

Thanks, MirroredFate

Upvotes: 9

Views: 8587

Answers (3)

mKorbel
mKorbel

Reputation: 109815

check for TreeTable or one example or Outline, but with notice, that on official Java (SnOracle) pages any progress died ...,

Upvotes: 1

OscarRyz
OscarRyz

Reputation: 199195

You can try using a JTable and put a button in the first column. When the button is clicked you add more data in the rows in between.

update

Something like this:

with a tree

Or this

with a tabel

I think the first uses a JTree but that the idea.

BTW these two belong to JIDE Soft, check if it is feasible for you to buy a license:

http://www.jidesoft.com/products/grids.htm

Is not trivial to roll you own but is not impossible either.

Upvotes: 2

Marcelo
Marcelo

Reputation: 11308

How about using a JTree.

A control that displays a set of hierarchical data as an outline.

Upvotes: 8

Related Questions