I have a view and I can filter it using jquery
$(document).ready(function (){
var list = $(".entitylist.entity-grid")
list.on("loaded", function () {
list.find("table tbody tr").each(function () { $(this).find("td").eq(8).remove(); });
list.find("table thead th").eq(8).remove();
list.find("table tbody > tr").each(function (index, value) {
var tr = $(this);
//the first value in the row
var code = tr.find("td:eq(0)").text();
if(code != 25526){
tr.remove();
}
})
})
})
works fine, but there are many empty pages.
someone knows how to remove the rows that do not match and only leave the ones with a specific code. and from there make the paging
Cheers