setting footer value
I am able to set and get the value of the footer but it does not display on the grid unless a grid.refresh is run. Am I missing something? Here's my code:
grid.onCellValidated = function(text, col, row){
//$get("Label1").innerHTML = "Cell validated - text: " + text + ", col: " + col + ", row: " + row;
grid.setFooterText(text,col);
alert(grid.getFooterText(col));
//grid.refresh();
}
grid.onCellValidated = function(text, col, row){
//$get("Label1").innerHTML = "Cell validated - text: " + text + ", col: " + col + ", row: " + row;
grid.setFooterText(text,col);
alert(grid.getFooterText(col));
//grid.refresh();
}
Xay Moua
May 21,