3.2.0

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();
}



Xay Moua
May 21,
Nevermind, I found the solution in the forum.
needed to add this line after setting the column text.

grid.getFooterTemplate(col,0).refresh()
Xay Moua
May 21,

This topic is archived.

See also:


Back to support forum