I'm trying to implement a custom TableCellRenderer on a jtable. the table is set to 100 rows and 100 columns. This table should contain all the glyphs for a specified font. My problem is that when the table is not fully complete with values, on the first column it puts the last value until it reaches the bottom of the table. Below i have the code for my custom renderer and a screenshot with the strange behaviour. Any help would be apreciated.

enter image description here

public class FontRenderer extends JLabel implements TableCellRenderer
{
Font desired_font;
Object prec_value;

public FontRenderer(Font f)
{
    desired_font = f;
}

public Component getTableCellRendererComponent(JTable table, Object value,
        boolean isSelected, boolean hasFocus, int rowIndex, int vColIndex)
{


    setOpaque(true);
    setHorizontalAlignment(SwingConstants.CENTER);
    setBackground(new Color(255, 255, 255));
    if (isSelected)
    {
        if (value == null)
        {
            setText("");
        }
        else
        {
            setText(value.toString());
        }
        setFont(desired_font);
        setBackground(new Color(56, 195, 254));
    }
    if (value == null)
    {
        setText("");
    }
    else
    {
        if(value==null)
            table.setValueAt(null, rowIndex, vColIndex);
        else
        setText(value.toString());
            //table.setValueAt(value.toString(), rowIndex, vColIndex);

    }
    setFont(desired_font);

    return this;
}
}

Edit: Here is the code where I populate the table.

while (cnt_i < 100) {
    while (cnt_j < 100) {
        if (my_fnt.canDisplay((char) unicode_char) && glyph_count <= total_glyphs) {
            jTable1.setValueAt((char) unicode_char, cnt_i, cnt_j);
            cnt_j++;
            if (glyph_count == total_glyphs) {
                break;
            }
            glyph_count++;
        }
        unicode_char++;
    }
    cnt_i++;
    cnt_j = 0;
}

Solved it. Ty all. it was how i populated the table. the following code has the changes:

while (cnt_i < 100) {
    while (cnt_j < 100) {
        if (my_fnt.canDisplay((char) unicode_char) && glyph_count <= total_glyphs) {
            if (glyph_count == total_glyphs) {
                break;
            }
            else {
                jTable1.setValueAt((char) unicode_char, cnt_i, cnt_j);
                cnt_j++;
                glyph_count++;
            }
        }
        unicode_char++;
    }
    cnt_i++;
    cnt_j = 0;
}
link|improve this question
1  
even though your renderer is very redundant it does not seem to be the origin of your problem. – stryba Jan 23 at 7:24
The data which is passed to your renderer is coming from the TableModel, so most likely that's where the problem is located. Please post that code instead of the rendering code – Robin Jan 23 at 7:29
Your code doesn't seem to be calling table.setValueAt (btw a renderer should not alter the table's content); So I guess the issue is in the way the table is populated – Maurice Perry Jan 23 at 7:40
See also FontShower`. – trashgod Jan 23 at 16:49
feedback

3 Answers

1) there are about Unicode Chars, I think that is not job for Renderer

2) set JTable#Font for JTable rather that passing parameters for Renderer

3) use prepareRenderer if you want to change bunch of data on Runtime

4) most important would be to see how did you populate JTable's data and define/set for Font(s)

link|improve this answer
feedback

I dont think that your problem is the CellRenderer ..

But I cleaned it up a bit for you

public class FontRenderer extends JLabel implements TableCellRenderer
{
    Font desired_font;
    Object prec_value;

    public FontRenderer(Font f)
    {
        desired_font = f;
    }

    public Component getTableCellRendererComponent(JTable table, Object value,
            boolean isSelected, boolean hasFocus, int rowIndex, int vColIndex)
    {
        setOpaque(true);
        setHorizontalAlignment(SwingConstants.CENTER);
        setBackground(new Color(255, 255, 255));
        setFont(desired_font);

        if (value == null)
        {
            setText("");
        }
        else
        {
            setText(value.toString());
        }

        if (isSelected)
        {
            setBackground(new Color(56, 195, 254));
        }

        //what was that for?
        //table.setValueAt(null, rowIndex, vColIndex);

        return this;
    }
}
link|improve this answer
feedback

As an aside, canDisplay(int) may help determine if a particular code point has a glyph in a given Font. REPLACEMENT CHARACTER is a convenient placeholder, and GlyphSet is a related example.

link|improve this answer
First of all thank you for the quck responses – Andrei Jan 23 at 8:33
here is the code where i populate the table – Andrei Jan 23 at 8:35
while (cnt_i < 100) { while (cnt_j < 100) { if (my_fnt.canDisplay((char) unicode_char) && glyph_count <= total_glyphs) { jTable1.setValueAt((char) unicode_char, cnt_i, cnt_j); cnt_j++; if (glyph_count == total_glyphs) { break; } glyph_count++; } unicode_char++; } cnt_i++; cnt_j = 0; } – Andrei Jan 23 at 8:43
sorry about this. it seems i cant answer my own question to be able to post formatted code until 8 hours have passed. I want to say that after i populate the table,if i don't use the renderer, it populates just fine. – Andrei Jan 23 at 8:46
You can update your question, as I have done on your behalf. Of course, substituting your sscce will be more effective. I'm guessing your implementation of TableModel is the problem. @mKorbel's and @rauschen's +1 answers are correct. – trashgod Jan 23 at 16:39
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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