Coloring grid rows.
I Used the functions below to color grid row text. On initial display the grid looks great. When I delete the data reload the grid and refresh, the colors are gone. Why?
ToDoList.defineRowProperty("color",
function(row) {
var color = gridData[row][8];
return color;
});
ToDoList.getRowTemplate().setStyle("color", function(){return this.getRowProperty("color");});
Paul R.
February 4,