C'est comme ça que ça marche pour moi. Dans la fonction de préparation du document, j'affecte la version convertie du tableau HTML à une variable et, lorsqu'un bouton est cliqué, je passe en revue les parents et les enfants avec JQuery et j'envoie la ligne obtenue comme paramètre à la fonction fnDeleteRow() de la bibliothèque.
Voici les commentaires de la fonction de bibliothèque. Et un exemple qui est mentionné dans la bibliothèque.
/**
* Remove a row for the table
* @param {mixed} target The index of the row from aoData to be deleted, or
* the TR element you want to delete
* @param {function|null} [callBack] Callback function
* @param {bool} [redraw=true] Redraw the table or not
* @returns {array} The row that was deleted
* @dtopt API
* @deprecated Since v1.10
*
* @example
* $(document).ready(function() {
* var oTable = $('#example').dataTable();
*
* // Immediately remove the first row
* oTable.fnDeleteRow( 0 );
* } );
*/
// And here's how it worked for me.
var oTable;
$("document").ready(function () {
oTable = $("#myTable").dataTable();
});
//Remove/Delete button's click.
$("a[name='deleteColumn']").click(function () {
var $row = $(this).parent().parent();
oTable.fnDeleteRow($row);
});