Get column header with Parent child
Get column header with Parent child
Dorababu
Posts: 17Questions: 2Answers: 0
How can I get the column header when there is same header present in parent child datatable
var table = $('#example').DataTable();
$('#example tbody').on( 'click', 'td', function () {
var idx = table.cell( this ).index().column;
var title = table.column( idx ).header();
alert( 'Column title clicked on: '+$(title).html() );
} );
On clicking child row I am not getting the header name
This discussion has been closed.
Answers
I got the solution by the following