he pals,
can any one help me out with the this task??
i have to blink the specfic cell in jtable..
say the index of the cell is 2,2
i have tried the following code.. but it is not working
while(true)
{
((Component) tableclassobject.jTable1.getCellRenderer(row, col)).setBackground(Color.red);
Thread.sleep(50);
((Component) tableclassobject.jTable1.getCellRenderer(row, col)).setBackground(Color.white);
}
insted of blink one cell its results in colouring the whole table red!
can any one help me out with this?

