私は私を助けている他の場所で答えを見つけました:
https://stackoverflow.com/a/11545376/4896102
はこの1つだけは、私のために働いた、そしてそれはあなたが使用できるという利点を持っている関数内で
//array with the tables IDs you want the filtering function to ignore
var allowFilter = ['yourTableId1', 'youTableId2'];
$.fn.dataTableExt.afnFiltering.push(function (oSettings, aData, iDataIndex)
{
// check if current table is part of the allow list
if ($.inArray(oSettings.nTable.getAttribute('id'), allowFilter) == -1)
{
// if not table should be ignored
return true;
}
//rest of the code
return false;
});
これを追加配列を使用すると、フィルタリング時に複数のテーブルを無視できます。
これはうまくいくかのように見えますが、いくつかの調整が必要です。 私はこの答えがわかりました:http://stackoverflow.com/a/11545376/4896102 –