var table = $('#example').DataTable();
$(document).on( 'click', '#FilterTable tbody tr', function () {
$(this).toggleClass('selected');
var ids = $.map(tableObject.rows('.selected').data(), function (item) {
return item
});
console.log(ids) // here it will retur array of object
} );
// you can also do this by clicking another method