3

Can anyone tell me how do I make table as seen in this image, using Java?

enter image description here

Andrew Thompson
  • 168,117
  • 40
  • 217
  • 433
Saagar Gugwad
  • 47
  • 1
  • 2

1 Answers1

-2

you can use Swingx Tree Table or implement your own Tree Table Cell Renderer

Meisam
  • 435
  • 1
  • 4
  • 12
  • 2
    Would you care to elaborate a bit on the subject? A single phrase with 2 links is kind of a short answer – Guillaume Polet Jul 03 '12 at 15:30
  • You must implement your own Cell Renderer. Think of it as the "panel" that will be shown inside each cell. You can customize the look to your particular needs. Other examples http://docs.oracle.com/javase/tutorial/uiswing/components/table.html#renderer – Daniel H. Apr 26 '13 at 09:57
  • It would nice if you included the important pieces here rather than just posting links. Code sample would be nice. – Engineer2021 Jul 19 '14 at 15:19