java.net Forums : JXTable highlighter issue with custom …
I am using JPanel as renderer with JXTable (with 2 textFIelds inside Panel)
but problem is .. this cell does not take background color as alternate highlighter.i have following code written.
if(isSelected){
textField.setBackground(table.getSelectionBackground());
}else{
textField.setBackground(table.getBackground());
}how do i get highlighter with panel as cellRenderer