I have written a default table render as follows:

public class CustTableRenderer extends DefaultTableCellRenderer{

    @Override
    public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int col) {
        Component comp = super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, col);
        try {

            Object cellObj = table.getModel().getValueAt(row, 7); 
            double cellValue = (Double) cellObj;

            if (cellValue < 0) {
                comp.setBackground(new Color(255, 48, 48));
            } else if (cellValue == 0) {
                comp.setBackground(new Color(173, 255, 47));
            } else {
                comp.setBackground(Color.white);
            }

            if (isSelected) {
                comp.setBackground(new Color(71, 60, 139));
                TableModel model = table.getModel();
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        return comp;
    }
}

To highlight the rows which contain minus values of column 7, I have also set setAutoCreateRowSorter to true. My problem is when I click a header to sort according to it table is sorted but the highlighted row is not changed, therefore a wrong row is highlighted.

How to redraw the table when it is sorted?

link|improve this question

1  
Attach a docs.oracle.com/javase/6/docs/api/javax/swing/event/… to the table, and in the delegate method, call the doLayout of the table. – govi Feb 22 at 10:24
@govi - NO, a manual doLayout is never needed. If that seems to solve a problem, there's something really wrong elsewhere – kleopatra Feb 22 at 10:27
@kleopatra - hmm. yeah well, that's quite true. – govi Feb 22 at 10:36
feedback

1 Answer

up vote 5 down vote accepted

the coordinates passed into the renderer are in view coordinate system, you have to convert them to model coordinates before accessing the model:

  int modelRow = table.convertRowIndexToModel(row);
  int modelColumn = table.convertColumnIndexToModel(column);
  cellObject = table.getModel().getValueAt(modelRow, modelColumn);
link|improve this answer
:@Keleopatra-> Thanx a lot – Harsha Feb 22 at 10:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.