Problem with two in header
Problem with two in header
aks2621
Posts: 3Questions: 0Answers: 0
Hi
My header is like this
I m using following
var oTable = $('#example').dataTable( {
"bProcessing": false,
"sAjaxSource": url,
"sAjaxDataProp": "abcd",
"bFilter": true,
"fnServerParams": function ( aoData ) {
aoData.push( { "name": "un", "value": "Pan" } );
},"sServerMethod": "POST",
"aoColumns": [
{ "mData": getData },
{ "mData": getData},
{ "mData": getData},
null,null,
{ "mData": getData}
],
}) ;
i m very new to datatable, i m matching 6 columns in my to aoColumns. But i get error in my jquery.dataTables.js at 1831
aLayout[i+k][iColShifted+l] = {
"cell": nCell,
"unique": bUnique //at this line (error says cannot convert undefined to object)
};
Please advice how to map columns in the scenario of two .
thanks in advance
ak
My header is like this
I m using following
var oTable = $('#example').dataTable( {
"bProcessing": false,
"sAjaxSource": url,
"sAjaxDataProp": "abcd",
"bFilter": true,
"fnServerParams": function ( aoData ) {
aoData.push( { "name": "un", "value": "Pan" } );
},"sServerMethod": "POST",
"aoColumns": [
{ "mData": getData },
{ "mData": getData},
{ "mData": getData},
null,null,
{ "mData": getData}
],
}) ;
i m very new to datatable, i m matching 6 columns in my to aoColumns. But i get error in my jquery.dataTables.js at 1831
aLayout[i+k][iColShifted+l] = {
"cell": nCell,
"unique": bUnique //at this line (error says cannot convert undefined to object)
};
Please advice how to map columns in the scenario of two .
thanks in advance
ak
This discussion has been closed.
Replies
I used the datatable debugger and the reference number is uforof
Please advice. I am very new to all this.
Allan