Footer Callback
Footer Callback
Hello,
I am trying to implement a footer callback so that I can total up some columns. I have the following callback in place.
[code]
"fnFooterCallback": function ( nRow, aaData, iStart, iEnd, aiDisplay ) {
/*
* Calculate the total market share for all browsers in this table (ie inc. outside
* the pagination)
*/
var iTotalKeywords = 0;
for ( var i=0 ; i
I am trying to implement a footer callback so that I can total up some columns. I have the following callback in place.
[code]
"fnFooterCallback": function ( nRow, aaData, iStart, iEnd, aiDisplay ) {
/*
* Calculate the total market share for all browsers in this table (ie inc. outside
* the pagination)
*/
var iTotalKeywords = 0;
for ( var i=0 ; i
This discussion has been closed.
Replies
At a quick guess I'd say it is because your HTML isn't valid: "thstyle" should be "th style". Not certain that this is the root cause, but it's certainly a good idea to have valid HTML: http://validator.w3.org/
Regards,
Allan
Allan