I posted the solution here if you want to take a look at it. Also for those who may be looking for something similar.
Get filtered data from Dataview in Slickgrid
if you want to show the information to be filtered, and that on the current page you can do something like this.
var pagingInfo = dataView.getPagingInfo(); var start = pagingInfo['pageSize'] * (pagingInfo['pageNum']); var filteredAndPagedItems = dataView.getFilteredItems().slice(start,(start + pagingInfo['pageSize'])); console.table(filteredAndPagedItems);
something along these lines. getFilteredItems is a custom function that I added to dataview.js. See the link for more information.
Joshua JLIVE Williams
source share