setCellText not working
Could somebody explain why this doesn't work?
obj.setCellText(function(col,row){
if (this.getCellValue(1, row) == "0") {
return "<b>test A</b>"
} else {
return "<b>test B</b>"
}
},1);
Basically I am trying to update a cell depending on the data in that cell
obj.setCellText(function(col,row){
if (this.getCellValue(1, row) == "0") {
return "<b>test A</b>"
} else {
return "<b>test B</b>"
}
},1);
Basically I am trying to update a cell depending on the data in that cell
Stumped
October 12,