wandora icon indicating copy to clipboard operation
wandora copied to clipboard

AnySelectionTable does not disable properly

Open psymagic opened this issue 4 years ago • 1 comments

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 avatar Oct 23 '20 00:10 psymagic

Psymagic, thank you for your report related to the AnySelectionTable.

akivela avatar Oct 24 '20 19:10 akivela