vote up 1 vote down star
1

What Swing class can I use to implement something like this?

Add To List

EDIT: Hmm..for some reason I cannot add the image here. Well, here's the link:

Basically, I need a list table, where each column can be of different type of gui (i.e. plain text, check box, or drop-down menu).

EDIT I have re-publish the image for you ;)

flag

if someone tries clicking "edit" on my post, you will see I try to add an image to this post. How come I was not able to do it? – ShaChris23 Nov 4 at 0:27
2  
It looks like the picasaweb redirect a number of times the request or something like that. I have re-publised your image in other hosting service. I hope you don't mind – Oscar Reyes Nov 4 at 0:45
oh definitely not. thanks for doign that now. now i know it was because of picasa. – ShaChris23 Nov 4 at 20:49

3 Answers

vote up 8 vote down check

You would use a JTable to implement it. Your data will be stored in a TableModel. The DefaultTableCellRenderer and DefaultTableCellEditor should do what you need, but you can also customize the rendering/behavior if necessary.

More info on renderers/editors: http://java.sun.com/docs/books/tutorial/uiswing/components/table.html#editrender

link|flag
Thanks. The link in your post is perfect for what I'm trying to do. – ShaChris23 Nov 4 at 0:27
vote up 0 vote down

JTable will do this for you, you're going to need to understand the MVC pattern pretty well to acheive this as you will need a custom model and renderer, but once you get the hang of it its not too hard.

David gearys book "Graphic Java Vol.2" has an excellent section on JTable, whilst this book is now fairly old I still personally think thats the best explanation of JTable I've seen.

link|flag
vote up 2 vote down

Definitely JTable.

JTable allow you to define what render will have each column. That way you can add checkboxes, combos, textfields etc. to it.

Here's an screenshot:

alt text

You can read more about it here: How to use Tables

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.