"><img> to paste in an image
Hi BizDev Apurva
Sorry for the delay. To completely remove the filter that you've applied, you have a few options:
Option 1: Set the filter value to an empty string
dataTable.setFilter({
column: "id",
type: "text",
value: "", // Empty string removes the filtering effect
}).redraw();
// Clear all filters
dataTable._config._state.filters = [];
// Redraw the table
dataTable.redraw();
// Change page size to 5
dataTable.setPageSize(5);