Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Critical
-
Resolution: Fixed
-
Affects Version/s: FEST-Swing 1.2a4
-
Fix Version/s: FEST-Swing 1.2rc
-
Component/s: Swing
-
Labels:None
-
Number of attachments :
Description
From TableCellInRowByValue
@RunsInCurrentThread private static boolean matchingRow(JTable table, JTableCellReader cellReader, String[] values, int row) { int columnCount = table.getColumnCount(); for (int col = 0; col < columnCount; col++) { if (areEqual(cellReader.valueAt(table, row, col), values[col])) return true; } return false; }
This returns true if any of the values in the columns match.
I cannot imagine this is intended?
Wow! this is pretty serious! I'll give this bug first priority. Thanks Morten for reporting this!
Cheers!