how to select data row from datatables from another table data code example
Example: get row data in datatable
Javascript12345var table = $('#example').DataTable(); $('#example tbody').on( 'click', 'tr', function () { console.log( table.row( this ).data() );} );