i want to get specific row columns data on button click . here my code
var oTable = $('#grid').dataTable({
"scrollCollapse": true,
"paging": false,
'aaData': dtData,
'bPaginate': false,
'bInfo': false,
"ordering": false,
"bProcessing": true,
'bFilter': true,
destroy: true,
"aoColumns": [null,null,null,null,
{
"mData": null,
"bSortable": false,
"mRender": function (o) { return '<a href="">'+"<img src='images/gridchart.png'></img>" +'</a>'; }
},
{
"targets": [5],
"visible": false,
"searchable": false
},
{
"targets": [6],
"visible": false,
"searchable": false
}
]
}).rowGrouping();
the problem is that the two last columns are not added to the dom at all, so i cannot retrieve their respective values
any help is welcome