Is it possible to add ID to last added row with jQuery DataTables (e.g., ...) ?
...
$(\'#example\').dataTable().fnA
This worked for me
var rowNode=$('#MyTable').DataTable().row.add([1,2,3]).draw( false ); rowNode.id='myId';
rowNode.id='myId';