I am using Jgoodies binding to bind the table with my data. What listener i should implement so that when a cell is selected the values in a panel are changed.
My model class of table extends AbstractTableAdapter which is an Jgoodies binding class.
thanks
The
ListSelectionModelin yourJTable(or suitable subclass) is what triggers events when the rows in a table are selected. You can implementListSelectionListenerand grab the selection model from theJTableand add yourself as a listener.