4

I need to use a JTreeTable but even after searching for hours, I couldn't find any nice tutorial on JtreeTable or even a simple code from which I can understand.

It would be very helpful if anyone can suggest me a nice tutorial or simple code depicting the use of JtreeTable.

mKorbel
  • 109,525
  • 20
  • 134
  • 319
aditya_gaur
  • 3,209
  • 6
  • 32
  • 43

2 Answers2

3

You can find it on: treetable1

Also you can find example at: TreeTableExample2.java

Hope this helps.

Harry Joy
  • 58,650
  • 30
  • 162
  • 207
2

If you are happy to use a 3rd party library SwingX contains JXTreeTable.

Mark
  • 28,783
  • 8
  • 63
  • 92
  • Thanks for the reply. I can use 3rd party library and infact I have been trying to understand JXTreeTable, but I am not able to find any good tutorial on JXTreeTable. – aditya_gaur Jan 28 '11 at 12:21
  • Yes. Useful as SwingX is there isn't much in the way of documentation or tutorials for it. SwingX comes with FileSystemModel and SimpleFileSystemModel for the tree table. Maybe you should start by looking at how they are implemented. – Mark Jan 28 '11 at 13:52