Still a Java newbie here, trying to stuff far too advanced for my own good. Nevertheless, here\'s what I need done: A checkbox within a JXTreeTable. My main class:
<
Sturm gives most of the solution.
The missing piece of the puzzle is that you can get the JTree from the JXTreeTable like this:
JTree
JXTreeTable
JTree tree = (JTree) treeTable.getCellRenderer(0, treeTable.getHierarchicalColumn())
It's a bit of a hack, but I don't know if they have any better API to get at it.