nThs[i - iCorrector] is undefined
nThs[i - iCorrector] is undefined
Hi
I am using DataTable 1.8.2 and initializing my table with
[code]
$(document).ready(function(){
$('#example').dataTable({
"iDisplayLength": 25,
"aLengthMenu": [[25, 50, 100, -1], [25, 50, 100, "All"]],
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "showall.do?days=30",
"aoColumns": [
{ "mDataProp": "date" },
{ "mDataProp": "destinationAgent" },
{ "mDataProp": "destinationFileName" },
{ "mDataProp": "fileSize" },
{ "mDataProp": "result" },
{ "mDataProp": "sourceAgent" },
{ "mDataProp": "sourceFileName" },
{ "mDataProp": "status" },
{ "mDataProp": "time" },
]
});
});
[/code]
When I run my page I am not getting any result but I have nThs[i - iCorrector] is undefined error in Firebug console.
can anyone tell me what this error mean?
I am using DataTable 1.8.2 and initializing my table with
[code]
$(document).ready(function(){
$('#example').dataTable({
"iDisplayLength": 25,
"aLengthMenu": [[25, 50, 100, -1], [25, 50, 100, "All"]],
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "showall.do?days=30",
"aoColumns": [
{ "mDataProp": "date" },
{ "mDataProp": "destinationAgent" },
{ "mDataProp": "destinationFileName" },
{ "mDataProp": "fileSize" },
{ "mDataProp": "result" },
{ "mDataProp": "sourceAgent" },
{ "mDataProp": "sourceFileName" },
{ "mDataProp": "status" },
{ "mDataProp": "time" },
]
});
});
[/code]
When I run my page I am not getting any result but I have nThs[i - iCorrector] is undefined error in Firebug console.
can anyone tell me what this error mean?
This discussion has been closed.
Replies
I think the solution is to check to make sure you have the correct number of cells in your html "#example" table.