开发者

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


How about using a JTree.

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


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:

How to make an expandable list with Java Swing

Or this

How to make an expandable list with Java Swing

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.


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

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜