T
TanStack3y ago
raw-harlequin

filterFn in column definition not being called

I have a column definition that looks like this:
columnHelper.accessor("type", {
header: t("type-grid-column-header", "Type"),
size: 130,
enableColumnFilter: true,
filterFn: (row, columnId, filterValue) => {
console.log(filterValue);
return false;
},
}),
columnHelper.accessor("type", {
header: t("type-grid-column-header", "Type"),
size: 130,
enableColumnFilter: true,
filterFn: (row, columnId, filterValue) => {
console.log(filterValue);
return false;
},
}),
but the filterFn seems like it's being completely ignored and the console.log never gets called. What might be the issue here?
0 Replies
No replies yetBe the first to reply to this messageJoin

Did you find this page helpful?