I am not a guru in Java, but I've got a task in which I have to create some tree list with properties, e.g. like this:
depth1
property1 | checkbox
property2 | combobox
depth2
property3 | string
property3 | button
where for every property it is possible to have different controls. I was struggling with JXTreeTable, but due to lack of documentation I am completely confused whether it is even appropriate for this. Maybe I can achieve this with simple JTreeTable instead of JXTreeTable? That would be even better. Could you suggest me any solution, please?