Is is possible to some how get the index of the selection corresponding to the non filtered table?
After the table is filter using a regexFilter. JTable getSelectedRow returns the index of the filtered table?
|
Is is possible to some how get the index of the selection corresponding to the non filtered table? After the table is filter using a regexFilter. JTable getSelectedRow returns the index of the filtered table?
| ||||
|
feedback
|
|
If you are using the built in TableRowSorter functionality from 1.6 you can use the convertRowIndexToModel() on the table. This is give you the unfiltered index of the selected row. The javadoc for JTable gives a description of this:
| |||
|
feedback
|
|
store the row id in your datamodel, when you get the selected row from jtable, query that rows ID. | |||
|
feedback
|