Is there any custom plugin(like JTreeTable with editable java components) in java, like in the above image.
I know this can be done by Extending JTreeTable or JXTreeTable Class or using TreeCellEditor etcetera... But, I need a quite exact structure like shown in the above image, Please guide me and Thanks in advance.
Outline
, seen here and here, uses the same renderer and editor schema asJTable
. For example, to get a column of checkboxes, yourRowModel
implementation ofgetColumnClass()
should returnBoolean.class
and your implementation ofisCellEditable()
should returntrue
for theLogical2
column. I haven't tried it, butDefaultCellEditor
, instantiated with aJCheckBox
, should work for the combo column.