Total Line
I wrote that little part of script. Actually i didn't deep search in forum but i hope can anyone help me. I want realtime refresh for result. How can do that?
obj.total = function (column){
var rows = 0;
for (i = 0; i < obj.getRowProperty("count"); i++) {
rows += obj.getDataProperty('value', i, column);
}
document.getElementById("total" + column.toString()).innerHTML = rows;
};
obj.total = function (column){
var rows = 0;
for (i = 0; i < obj.getRowProperty("count"); i++) {
rows += obj.getDataProperty('value', i, column);
}
document.getElementById("total" + column.toString()).innerHTML = rows;
};
Sinan Keskin
September 14,