I would like to add new settings after datatable initiate
I would like to add new settings after datatable initiate

var dt = $(“table-result”).DataTable();
var settings = dt.settings();
dt.clear();
settings._iRecordsDisplay = json.total;
settings._iRecordsTotal = json.total;
dt.destroy();
dt = $(“table-result”).DataTable(settings);
This discussion has been closed.
Answers
Maybe you can describe more about what you are trying to do. There are no Datatables options for _iRecordsDisplay and _iRecordsTotal.
Kevin