I would like to use editor's multiSet, but I need to send only the filtered data of a DataTable to the Editor. Is there a way to access the data of a dataTable after a filter has been set (the filter is going to be set via SearchPane)?
This question has an accepted answers - jump to answer
If you are using rows().data() then you can use the selector-modifier of {search:'applied'}.
rows().data()
selector-modifier
{search:'applied'}
Kevin
perfect. thanks
var filteredData = EquipmentOnLoanTable.rows({ search: 'applied' }).data(); console.log(filteredData);
It looks like you're new here. If you want to get involved, click one of these buttons!
Answers
If you are using
rows().data()
then you can use theselector-modifier
of{search:'applied'}
.Kevin
perfect. thanks