wandora
wandora copied to clipboard
AnySelectionTable does not disable properly
Thanks for the Table, has been really helpful to work around swings inherent limitations.
Now to the problem: When the table is disabled, selection is still possible.
Possible solution:
add this to mouseDragged
and mousePressed
in AnySelectionTableUI
JTable t = getTable();
if(!t.isEnabled()) {
return;
}
Psymagic, thank you for your report related to the AnySelectionTable.