カラムの日付に基づいてデータテーブルをフィルタリングしようとしていますが、データのフィルタリングがうまくいったとしてもテーブルのUIは私はここで何が欠けているのですか? official documentationからテーブルのデータをフィルタリングしてテーブルの行を変更しないでください
var filterTable = hpDataTable.
column(1).
data().
filter(function (value, index, api) {
var today = new Date();
today.setHours(0, 0, 0, 0);
var dateFromColumn = moment(value).toDate();
return dateFromColumn < today ? false : true;
//there is no affect on the table ui.
}).draw();
//filterTable returns the data I want.
console.log(filterTable);
}
はあなたのコードのjsフィドルを置くことができますか?ここにコードを表示することもできます。 –