JTable: Zelleninhalt fett schreiben

Lädde

Grünschnabel
Hallo!

Ich verwende den TableSorter, mit dem ich meine Tabelle nach der Spalte, auf die geklickt worden ist, sortieren kann.
Jetzt würde ich gerne die Inhalte in der Spalte, nach der sortiert wurde, fett schreiben.

Kann man in einzelnen Zellen die Schriftart ändern?
Hat mir da jemand einen Tipp?
 
Moin,
geht mit einem eigenen TableCellRenderer in der Methode getTableCellRendererComponent().
Beispiele dazu gibt es hier im Forum genügend.
 
Hallo!

Schau mal hier:
Code:
 package de.tutorials;
 
 import java.awt.BorderLayout;
 import java.awt.Component;
 import java.awt.Container;
 import java.awt.Font;
 import java.awt.event.MouseAdapter;
 import java.awt.event.MouseEvent;
 import java.util.Collections;
 import java.util.Comparator;
 import java.util.Vector;
 
 import javax.swing.ImageIcon;
 import javax.swing.JFrame;
 import javax.swing.JScrollPane;
 import javax.swing.JTable;
 import javax.swing.SwingConstants;
 import javax.swing.UIManager;
 import javax.swing.table.DefaultTableCellRenderer;
 import javax.swing.table.DefaultTableModel;
 import javax.swing.table.JTableHeader;
 
 import com.sun.java.swing.plaf.motif.MotifGraphicsUtils;
 
 /**
  * @author Administrator
  * 
  * TODO Explain me
  */
 public class SortableJTableExample extends JFrame {
 
 	private JTable table;
 
 	private SortableTableModel model;
 
 	private final ImageIcon UP_ICON = new ImageIcon(MotifGraphicsUtils.class
 			.getResource("icons/ScrollUpArrow.gif"));
 
 	private ImageIcon DOWN_ICON = new ImageIcon(MotifGraphicsUtils.class
 			.getResource("icons/ScrollDownArrow.gif"));
 
 	public SortableJTableExample() {
 		super("SortableJTableExample");
 		setDefaultCloseOperation(EXIT_ON_CLOSE);
 
 		Object[][] rowData = { { "1", "a", "c" }, { "2", "b", "b" },
 		    	{ "3", "f", "r" }, { "4", "q", "a" }, { "5", "w", "z" },
 				{ "6", "c", "a" }, { "7", "a", "q" } };
 
 		final Object[] columnHeaders = { "ID", "Header1", "Header2" };
 
 		model = new SortableTableModel(rowData, columnHeaders);
 		table = new JTable(model);
 
 		table.getTableHeader().setDefaultRenderer(
 				new DefaultTableCellRenderer() {
 
 		    		public Component getTableCellRendererComponent(
 		    		    	JTable table, Object value, boolean isSelected,
 		    		    	boolean hasFocus, int row, int column) {
 
 		    			JTableHeader header = table.getTableHeader();
 		    		    setForeground(header.getForeground());
 		    		    setBackground(header.getBackground());
 		    		    setFont(header.getFont());
 
 		    			setText(value == null ? "" : value.toString());
 		    		    setBorder(UIManager.getBorder("TableHeader.cellBorder"));
 		    		    setHorizontalAlignment(SwingConstants.CENTER);
 		    		    setHorizontalTextPosition(SwingConstants.LEFT);
 
 		    			if (model.sortColumnDesc[column]) {
 		    		    	setIcon(UP_ICON);
 						} else {
 		    		    	setIcon(DOWN_ICON);
 						}
 
 						return this;
 					}
 				});
 
 		table.getTableHeader().addMouseListener(new MouseAdapter() {
 			public void mousePressed(MouseEvent evt) {
 		        model.sortByColumn(table.columnAtPoint(evt.getPoint()));
 			}
 		});
 
 		table.setDefaultRenderer(Object.class, new DefaultTableCellRenderer() {
 
 			public Component getTableCellRendererComponent(JTable table,
 		    		Object value, boolean isSelected, boolean hasFocus,
 					int row, int column) {
 		    	Component component = super.getTableCellRendererComponent(
 		    			table, value, isSelected, hasFocus, row, column);
 
 				if (column == model.currentSortColumn) {
 					component
 		    		    	.setFont(component.getFont().deriveFont(Font.BOLD));
 				}
 
 				return component;
 			}
 		});
 
 		Container c = getContentPane();
 		c.add(new JScrollPane(table), BorderLayout.CENTER);
 
 		pack();
 		setVisible(true);
 	}
 
 	public static void main(String[] args) {
 		new SortableJTableExample();
 	}
 
 	class SortableTableModel extends DefaultTableModel {
 
 		private boolean[] sortColumnDesc;
 
 		private int currentSortColumn = 0;
 
 		private Comparator comparator = new Comparator() {
 			public int compare(Object o1, Object o2) {
 				Vector v1 = (Vector) o1;
 				Vector v2 = (Vector) o2;
 
 				int columnCnt = getColumnCount();
 				if (currentSortColumn >= columnCnt) {
 		    		throw new IllegalArgumentException("max column idx: "
 		    		    	+ columnCnt);
 				}
 
 		    	Comparable c1 = (Comparable) v1.get(currentSortColumn);
 		    	Comparable c2 = (Comparable) v2.get(currentSortColumn);
 
 				int cmp = c1.compareTo(c2);
 
 				if (sortColumnDesc[currentSortColumn]) {
 					cmp *= -1;
 				}
 
 				return cmp;
 			}
 		};
 
 		public SortableTableModel(Object[][] rowData, Object[] headers) {
 			super(rowData, headers);
 			sortColumnDesc = new boolean[headers.length];
 		}
 
 		public void sortByColumn(final int clm) {
 			if (clm == 0) { // erste Spalte nicht Sortieren...
 				return;
 			}
 
 			currentSortColumn = clm;
 
 			Collections.sort(SortableJTableExample.this.model.dataVector,
 					comparator);
 			model.sortColumnDesc[clm] ^= true;
 		}
 	}
 }

Gruß Tom
 
Danke, dein Programm läuft echt gut.
Leider will´s bei mir nicht richtig.
Ich hab mir den Teil herausgenommen:
Code:
jTable.setDefaultRenderer(Object.class, new DefaultTableCellRenderer() {
            public Component getTableCellRendererComponent(JTable table,
                    Object value, boolean isSelected, boolean hasFocus,
                    int row, int column) {
                Component component = super.getTableCellRendererComponent(
                        table, value, isSelected, hasFocus, row, column);
                if (column == getColumn()) {
                    component.setFont(component.getFont().deriveFont(Font.BOLD));
                }
                return component;
            }
        });
Irgendwie fängt bei mir die column erst bei 1 an zu zählen. D.h. meine erste Spalte wird nie fett.
Woran könnte das liegen?

Und meine nächste Frage wäre dann:
Wie bekomm ich den Spaltenkopf auch noch fett geschrieben?

Gruß, Lädde
 
Hallo!

*räusper*
Code:
 public void sortByColumn(final int clm) {
 			 if (clm == 0) { // erste Spalte nicht Sortieren...
 				 return;
 			 }

Gruß Tom
 
Hi!

Das ist nicht das Problem.
Den Teil hab ich gar nicht benutzt.
Ich sortiere damit:
Code:
package xdki;

import java.awt.*;
import java.awt.event.*;
import java.util.*;
import java.util.List;

import javax.swing.*;
import javax.swing.event.TableModelEvent;
import javax.swing.event.TableModelListener;
import javax.swing.table.*;

/**
 * TableSorter is a decorator for TableModels; adding sorting
 * functionality to a supplied TableModel. TableSorter does
 * not store or copy the data in its TableModel; instead it maintains
 * a map from the row indexes of the view to the row indexes of the
 * model. As requests are made of the sorter (like getValueAt(row, col))
 * they are passed to the underlying model after the row numbers
 * have been translated via the internal mapping array. This way,
 * the TableSorter appears to hold another copy of the table
 * with the rows in a different order.
 * <p/>
 * TableSorter registers itself as a listener to the underlying model,
 * just as the JTable itself would. Events recieved from the model
 * are examined, sometimes manipulated (typically widened), and then
 * passed on to the TableSorter's listeners (typically the JTable).
 * If a change to the model has invalidated the order of TableSorter's
 * rows, a note of this is made and the sorter will resort the
 * rows the next time a value is requested.
 * <p/>
 * When the tableHeader property is set, either by using the
 * setTableHeader() method or the two argument constructor, the
 * table header may be used as a complete UI for TableSorter.
 * The default renderer of the tableHeader is decorated with a renderer
 * that indicates the sorting status of each column. In addition,
 * a mouse listener is installed with the following behavior:
 * <ul>
 * <li>
 * Mouse-click: Clears the sorting status of all other columns
 * and advances the sorting status of that column through three
 * values: {NOT_SORTED, ASCENDING, DESCENDING} (then back to
 * NOT_SORTED again).
 * <li>
 * SHIFT-mouse-click: Clears the sorting status of all other columns
 * and cycles the sorting status of the column through the same
 * three values, in the opposite order: {NOT_SORTED, DESCENDING, ASCENDING}.
 * <li>
 * CONTROL-mouse-click and CONTROL-SHIFT-mouse-click: as above except
 * that the changes to the column do not cancel the statuses of columns
 * that are already sorting - giving a way to initiate a compound
 * sort.
 * </ul>
 * <p/>
 * This is a long overdue rewrite of a class of the same name that
 * first appeared in the swing table demos in 1997.
 * 
 * @author Philip Milne
 * @author Brendon McLean 
 * @author Dan van Enckevort
 * @author Parwinder Sekhon
 * @version 2.0 02/27/04
 */

public class TableSorter extends AbstractTableModel {
    protected TableModel tableModel;

    public static final int DESCENDING = -1;
    public static final int NOT_SORTED = 0;
    public static final int ASCENDING = 1;

    private static Directive EMPTY_DIRECTIVE = new Directive(-1, NOT_SORTED);

    public static final Comparator COMPARABLE_COMAPRATOR = new Comparator() {
        public int compare(Object o1, Object o2) {
            return ((Comparable) o1.toString().toLowerCase()).compareTo(o2.toString().toLowerCase());
        }
    };
    public static final Comparator LEXICAL_COMPARATOR = new Comparator() {
        public int compare(Object o1, Object o2) {
            return o1.toString().toLowerCase().compareTo(o2.toString().toLowerCase());
        }
    };

    private Row[] viewToModel;
    private int[] modelToView;

    private JTableHeader tableHeader;
    private MouseListener mouseListener;
    private TableModelListener tableModelListener;
    private Map columnComparators = new HashMap();
    private List sortingColumns = new ArrayList();

    public TableSorter() {
        this.mouseListener = new MouseHandler();        
        this.tableModelListener = new TableModelHandler();
    }

    public TableSorter(TableModel tableModel) {
        this();
        setTableModel(tableModel);
    }

    public TableSorter(TableModel tableModel, JTableHeader tableHeader) {
        this();
        setTableHeader(tableHeader);
        setTableModel(tableModel);
    }

    private void clearSortingState() {
        viewToModel = null;
        modelToView = null;
    }

    public TableModel getTableModel() {
        return tableModel;
    }

    public void setTableModel(TableModel tableModel) {
        if (this.tableModel != null) {
            this.tableModel.removeTableModelListener(tableModelListener);
        }

        this.tableModel = tableModel;
        if (this.tableModel != null) {
            this.tableModel.addTableModelListener(tableModelListener);
        }

        clearSortingState();
        fireTableStructureChanged();
    }

    public JTableHeader getTableHeader() {
        return tableHeader;
    }

    public void setTableHeader(JTableHeader tableHeader) {
        if (this.tableHeader != null) {
            this.tableHeader.removeMouseListener(mouseListener);
            TableCellRenderer defaultRenderer = this.tableHeader.getDefaultRenderer();
            if (defaultRenderer instanceof SortableHeaderRenderer) {
                this.tableHeader.setDefaultRenderer(((SortableHeaderRenderer) defaultRenderer).tableCellRenderer);
            }
        }
        this.tableHeader = tableHeader;
        if (this.tableHeader != null) {
            this.tableHeader.addMouseListener(mouseListener);
            this.tableHeader.setDefaultRenderer(
                    new SortableHeaderRenderer(this.tableHeader.getDefaultRenderer()));
        }
    }

    public boolean isSorting() {
        return sortingColumns.size() != 0;
    }

    private Directive getDirective(int column) {
        for (int i = 0; i < sortingColumns.size(); i++) {
            Directive directive = (Directive)sortingColumns.get(i);
            if (directive.column == column) {
                return directive;
            }
        }
        return EMPTY_DIRECTIVE;
    }

    public int getSortingStatus(int column) {
        return getDirective(column).direction;
    }

    private void sortingStatusChanged() {
        clearSortingState();
        fireTableDataChanged();
        if (tableHeader != null) {
            tableHeader.repaint();
        }
    }

    public void setSortingStatus(int column, int status) {
        Directive directive = getDirective(column);
        if (directive != EMPTY_DIRECTIVE) {
            sortingColumns.remove(directive);
        }
        if (status != NOT_SORTED) {
            sortingColumns.add(new Directive(column, status));
        }
        sortingStatusChanged();
    }

    protected Icon getHeaderRendererIcon(int column, int size) {
        Directive directive = getDirective(column);
        if (directive == EMPTY_DIRECTIVE) {
            return null;
        }
        return new Arrow(directive.direction == DESCENDING, size, sortingColumns.indexOf(directive));
    }

    private void cancelSorting() {
        sortingColumns.clear();
        sortingStatusChanged();
    }

    public void setColumnComparator(Class type, Comparator comparator) {
        if (comparator == null) {
            columnComparators.remove(type);
        } else {
            columnComparators.put(type, comparator);
        }
    }

    protected Comparator getComparator(int column) {
        Class columnType = tableModel.getColumnClass(column);
        Comparator comparator = (Comparator) columnComparators.get(columnType);
        if (comparator != null) {
            return comparator;
        }
        if (Comparable.class.isAssignableFrom(columnType)) {
            return COMPARABLE_COMAPRATOR;
        }
        return LEXICAL_COMPARATOR;
    }

    private Row[] getViewToModel() {
        if (viewToModel == null) {
            int tableModelRowCount = tableModel.getRowCount();
            viewToModel = new Row[tableModelRowCount];
            for (int row = 0; row < tableModelRowCount; row++) {
                viewToModel[row] = new Row(row);
            }

            if (isSorting()) {
                Arrays.sort(viewToModel);
            }
        }
        return viewToModel;
    }

    public int modelIndex(int viewIndex) {
        return getViewToModel()[viewIndex].modelIndex;
    }

    private int[] getModelToView() {
        if (modelToView == null) {
            int n = getViewToModel().length;
            modelToView = new int[n];
            for (int i = 0; i < n; i++) {
                modelToView[modelIndex(i)] = i;
            }
        }
        return modelToView;
    }

    // TableModel interface methods 

    public int getRowCount() {
        return (tableModel == null) ? 0 : tableModel.getRowCount();
    }

    public int getColumnCount() {
        return (tableModel == null) ? 0 : tableModel.getColumnCount();
    }

    public String getColumnName(int column) {
        return tableModel.getColumnName(column);
    }

    public Class getColumnClass(int column) {
        return tableModel.getColumnClass(column);
    }

    public boolean isCellEditable(int row, int column) {
        return tableModel.isCellEditable(modelIndex(row), column);
    }

    public Object getValueAt(int row, int column) {
        return tableModel.getValueAt(modelIndex(row), column);
    }

    public void setValueAt(Object aValue, int row, int column) {
        tableModel.setValueAt(aValue, modelIndex(row), column);
    }

    // Helper classes
    
    private class Row implements Comparable {
        private int modelIndex;

        public Row(int index) {
            this.modelIndex = index;
        }

        public int compareTo(Object o) {
            int row1 = modelIndex;
            int row2 = ((Row) o).modelIndex;

            for (Iterator it = sortingColumns.iterator(); it.hasNext();) {
                Directive directive = (Directive) it.next();
                int column = directive.column;
                Object o1 = tableModel.getValueAt(row1, column).toString().toLowerCase();
                Object o2 = tableModel.getValueAt(row2, column).toString().toLowerCase();

                int comparison = 0;
                // Define null less than everything, except null.
                if (o1 == null && o2 == null) {
                    comparison = 0;
                } else if (o1 == null) {
                    comparison = -1;
                } else if (o2 == null) {
                    comparison = 1;
                } else {
                    comparison = getComparator(column).compare(o1, o2);
                }
                if (comparison != 0) {
                    return directive.direction == DESCENDING ? -comparison : comparison;
                }
            }
            return 0;
        }
    }

    private class TableModelHandler implements TableModelListener {
        public void tableChanged(TableModelEvent e) {
            // If we're not sorting by anything, just pass the event along.             
            if (!isSorting()) {
                clearSortingState();
                fireTableChanged(e);
                return;
            }
                
            // If the table structure has changed, cancel the sorting; the             
            // sorting columns may have been either moved or deleted from             
            // the model. 
            if (e.getFirstRow() == TableModelEvent.HEADER_ROW) {
                cancelSorting();
                fireTableChanged(e);
                return;
            }

            // We can map a cell event through to the view without widening             
            // when the following conditions apply: 
            // 
            // a) all the changes are on one row (e.getFirstRow() == e.getLastRow()) and, 
            // b) all the changes are in one column (column != TableModelEvent.ALL_COLUMNS) and,
            // c) we are not sorting on that column (getSortingStatus(column) == NOT_SORTED) and, 
            // d) a reverse lookup will not trigger a sort (modelToView != null)
            //
            // Note: INSERT and DELETE events fail this test as they have column == ALL_COLUMNS.
            // 
            // The last check, for (modelToView != null) is to see if modelToView 
            // is already allocated. If we don't do this check; sorting can become 
            // a performance bottleneck for applications where cells  
            // change rapidly in different parts of the table. If cells 
            // change alternately in the sorting column and then outside of             
            // it this class can end up re-sorting on alternate cell updates - 
            // which can be a performance problem for large tables. The last 
            // clause avoids this problem. 
            int column = e.getColumn();
            if (e.getFirstRow() == e.getLastRow()
                    && column != TableModelEvent.ALL_COLUMNS
                    && getSortingStatus(column) == NOT_SORTED
                    && modelToView != null) {
                int viewIndex = getModelToView()[e.getFirstRow()];
                fireTableChanged(new TableModelEvent(TableSorter.this, 
                                                     viewIndex, viewIndex, 
                                                     column, e.getType()));
                return;
            }

            // Something has happened to the data that may have invalidated the row order. 
            clearSortingState();
            fireTableDataChanged();
            return;
        }
    }

    private class MouseHandler extends MouseAdapter {
        public void mouseClicked(MouseEvent e) {
            JTableHeader h = (JTableHeader) e.getSource();
            TableColumnModel columnModel = h.getColumnModel();
            int viewColumn = columnModel.getColumnIndexAtX(e.getX());
            int column = columnModel.getColumn(viewColumn).getModelIndex();
            if (column != -1) {
                int status = getSortingStatus(column);
                if (!e.isControlDown()) {
                    cancelSorting();
                }
                // Cycle the sorting states through {NOT_SORTED, ASCENDING, DESCENDING} or 
                // {NOT_SORTED, DESCENDING, ASCENDING} depending on whether shift is pressed. 
                status = status + (e.isShiftDown() ? -1 : 1);
                status = (status + 4) % 3 - 1; // signed mod, returning {-1, 0, 1}
                //setSortingStatus(column, status); //ersetzt durch:
                setSortingStatus(column, 1); //nur abc sortieren!
            }
        }
    }

    private static class Arrow implements Icon {
        private boolean descending;
        private int size;
        private int priority;

        public Arrow(boolean descending, int size, int priority) {
            this.descending = descending;
            this.size = size;
            this.priority = priority;
        }

        public void paintIcon(Component c, Graphics g, int x, int y) {
            Color color = c == null ? Color.GRAY : c.getBackground();             
            // In a compound sort, make each succesive triangle 20% 
            // smaller than the previous one. 
            int dx = (int)(size/2*Math.pow(0.8, priority));
            int dy = descending ? dx : -dx;
            // Align icon (roughly) with font baseline. 
            y = y + 5*size/6 + (descending ? -dy : 0);
            int shift = descending ? 1 : -1;
            g.translate(x, y);

            // Right diagonal. 
            g.setColor(color.darker());
            g.drawLine(dx / 2, dy, 0, 0);
            g.drawLine(dx / 2, dy + shift, 0, shift);
            
            // Left diagonal. 
            g.setColor(color.brighter());
            g.drawLine(dx / 2, dy, dx, 0);
            g.drawLine(dx / 2, dy + shift, dx, shift);
            
            // Horizontal line. 
            if (descending) {
                g.setColor(color.darker().darker());
            } else {
                g.setColor(color.brighter().brighter());
            }
            g.drawLine(dx, 0, 0, 0);

            g.setColor(color);
            g.translate(-x, -y);
        }

        public int getIconWidth() {
            return size;
        }

        public int getIconHeight() {
            return size;
        }
    }

    private class SortableHeaderRenderer implements TableCellRenderer {
        private TableCellRenderer tableCellRenderer;

        public SortableHeaderRenderer(TableCellRenderer tableCellRenderer) {
            this.tableCellRenderer = tableCellRenderer;
        }

        public Component getTableCellRendererComponent(JTable table, 
                                                       Object value,
                                                       boolean isSelected, 
                                                       boolean hasFocus,
                                                       int row, 
                                                       int column) {
            Component c = tableCellRenderer.getTableCellRendererComponent(table, 
                    value, isSelected, hasFocus, row, column);
            if (c instanceof JLabel) {
                JLabel l = (JLabel) c;
                l.setHorizontalTextPosition(JLabel.LEFT);
                int modelColumn = table.convertColumnIndexToModel(column);
                l.setIcon(getHeaderRendererIcon(modelColumn, l.getFont().getSize()));
            }
            return c;
        }
    }

    private static class Directive {
        private int column;
        private int direction;

        public Directive(int column, int direction) {
            this.column = column;
            this.direction = direction;
        }
    }
}
Wieso der Renderer die columns bei 1 anfängt zu zählen, hab ich leider noch nicht gefunden.
 
>Irgendwie fängt bei mir die column erst bei 1 an zu zählen. D.h. meine erste Spalte wird nie fett.
>Woran könnte das liegen?

Hast Du für die erste Spalte einen anderen Renderer gesetzt? Oder eine andere Class für diese TableColumn?
 
Nicht, dass ich wüsste.
Vom Renderer hab ich erst bei dem Problem hier was gehört.

Meine Tabelle befüll ich so:
Code:
package xdki;

import javax.swing.*;
import javax.swing.table.*;
import java.util.*;

public class MyTableModel extends AbstractTableModel {
    private String[] columnNames = {"Part no.", "Type", "Article designation", "Product name", "Price in €", "PC"};
    private Object[][] data;
        
    public MyTableModel(Vector v){
        this.data = new Object[v.size()][6];
        for(int i = 0; i < v.size(); i++){
            Produkt produkt = (Produkt)v.get(i);
            data[i][0] = produkt.getPartno();
            data[i][1] = produkt.getType();
            data[i][2] = produkt.getBnn();
            data[i][3] = produkt.getVn();
            data[i][4] = produkt.getTrz();
            data[i][5] = produkt.getTrw();
        }
    }
    
    public int getColumnCount() {
        return columnNames.length;
    }
    
    public int getRowCount() {
        return data.length;
    }
    
    public String getColumnName(int col) {
        return columnNames[col];
    }
    
    public Object getValueAt(int row, int col) {
        return data[row][col];
    }
    
        /*
         * JTable uses this method to determine the default renderer/
         * editor for each cell.  If we didn't implement this method,
         * then the last column would contain text ("true"/"false"),
         * rather than a check box.
         */
    public Class getColumnClass(int c) {
        return getValueAt(0, c).getClass();
    }
    
        /*
         * Don't need to implement this method unless your table's
         * editable.
         */
    public boolean isCellEditable(int row, int col) {
        //Note that the data/cell address is constant,
        //no matter where the cell appears onscreen.
        return false;
    }
    
        /*
         * Don't need to implement this method unless your table's
         * data can change.
         */
    public void setValueAt(Object value, int row, int col) {
        
        
        data[row][col] = value;
        fireTableCellUpdated(row, col);
        
        
    }
    
    
}
Meine Daten kommen aus einer DB und werden mit dem Vektor v übergeben.
 
Lädde hat gesagt.:
Code:
jTable.setDefaultRenderer(Object.class, new DefaultTableCellRenderer() {
            public Component getTableCellRendererComponent(JTable table,
                    Object value, boolean isSelected, boolean hasFocus,
                    int row, int column) {
                Component component = super.getTableCellRendererComponent(
                        table, value, isSelected, hasFocus, row, column);
                if (column == getColumn()) {
                    component.setFont(component.getFont().deriveFont(Font.BOLD));
                }
                return component;
            }
        });
Irgendwie fängt bei mir die column erst bei 1 an zu zählen. D.h. meine erste Spalte wird nie fett.
Woran könnte das liegen?

Gruß, Lädde

Also offenbar ist ja
if (column == getColumn()) {
von Bedeutung. Hast Du geprüft, ob column jemals 0 ist? Wenn ja, liefert getColumn() evtl. eine Abweichung? Wenn nein, wird der Renderer definitiv nicht für die erste Spalte benutzt. Dann musst Du herausfinden, weshalb. Die Renderer-Zuweisung ist ein Zusammenspiel zwischen getColumnClass und setDefaultRenderer(Klasse, zu verwendender Renderer)
 
Nein, column wird niemals 0.
getColumn() dagegen liefert mir, nach welcher Spalte sortiert wurde und ist dann 0.

Danke für die Erklärung.
Jetzt weiß ich, wo ich anfangen kann zu suchen.
 
Zurück