Ich glaube ich hab's:
<script>
$(document).ready(function() {
var table = $('#example').DataTable( {
"respsonsive": true
} );
$('#example tbody').on( 'click', 'img.icon-delete', function (e) {
that = $(this);
bootbox.confirm("Datensatz #" + e.currentTarget.id + " wirklich loeschen?", function(result){
if(result) {
table
.row( that.parents('tr') )
.remove()
.draw();
}
});
} );
😀