FlatLaf icon indicating copy to clipboard operation
FlatLaf copied to clipboard

Non-Editable Table Cells

Open MerlinUKRhapsody opened this issue 1 year ago • 0 comments

Is it possible to paint a non-editable (Boolean) table cell differently ? eg:

@Override public boolean isCellEditable( int row, int column ) { if ( column == COL_DRAG ) return false; if ( column == COL_CAPTURE && !mainGUI.isQuery ) return false; return true; }

This presents a checkbox - but I couldn't find a way to color it differently. I tried the CheckBox properties but these didnt take effect in the table:

CheckBox.icon.checkmarkColor = @Forgeround CheckBox.icon.background = @TECH_RED CheckBox.icon.disabledBorderColor = @SLATE CheckBox.icon.disabledBackground = @SLATE

The Capture cells are all non-editable but they appear the same as the target cells which are editable:

image

MerlinUKRhapsody avatar Jun 25 '24 08:06 MerlinUKRhapsody