bProcessing bug
bProcessing bug
jammyjams
Posts: 4Questions: 0Answers: 0
Hi Allan,
I am trying to use the bProcessing parameter but everytime I set it to true it causes an error "a is undefinded" line 101. I am using v1.8.1 minimized js file. The line is:
[code]
"undefined"&&b.setAttribute("id",a.sTableId+"_processing");b.innerHTML=a.oLanguage.sProcessing;b.className=a.oClasses.sProcessing;a.nTable.parentNode.insertBefore(b,a.nTable);return b}function K(a,b){if(a.oFeatures.bProcessing){a=a.aanFeatures.r;for(var c=0,d=a.length;c
I am trying to use the bProcessing parameter but everytime I set it to true it causes an error "a is undefinded" line 101. I am using v1.8.1 minimized js file. The line is:
[code]
"undefined"&&b.setAttribute("id",a.sTableId+"_processing");b.innerHTML=a.oLanguage.sProcessing;b.className=a.oClasses.sProcessing;a.nTable.parentNode.insertBefore(b,a.nTable);return b}function K(a,b){if(a.oFeatures.bProcessing){a=a.aanFeatures.r;for(var c=0,d=a.length;c
This discussion has been closed.
Replies
I'm surprised that it is working at all! You must has at least a 't' (for the table) in sDom, and if you want processing then an 'r' is required: http://datatables.net/ref#sDom.
Allan