Grid not refreshed after runtime setCellImage
Dear all,
I am doing the following on a grid :
if col 0 is clicked, then image "delete" shall be displayed in the clicked cell...
so I wrote the following
Grid.onCellClicked = function(event, col, row)
{
if (col==0)
{
myImages[row][0] = "delete";
this.setCellImage("delete",row,col);
alert(this.getCellImage(row,col));
}
};
the alert message shows that the delete image is supposed to be in the cell, but it doesn't display... what should I do???
Thanks for help!
PS : I am using b4 and IE 6
I am doing the following on a grid :
if col 0 is clicked, then image "delete" shall be displayed in the clicked cell...
so I wrote the following
Grid.onCellClicked = function(event, col, row)
{
if (col==0)
{
myImages[row][0] = "delete";
this.setCellImage("delete",row,col);
alert(this.getCellImage(row,col));
}
};
the alert message shows that the delete image is supposed to be in the cell, but it doesn't display... what should I do???
Thanks for help!
PS : I am using b4 and IE 6
Peg
January 31,