NOTE: PR exists.
Current behavior
It's not possible to filter the table by null or undefined values.
Expected behavior
It should be able to filter empty rows.
Minimal reproduction of the problem with instructions
https://stackblitz.com/edit/github-2ovumv
Any chance that this will be looked at for near future release? I have a workaround in place for my app but it'd be nice to go back to the native "in" filter mode.
FilterUtils['in-fixed'] = (value, filters) => {
if (filters === undefined || filters === null || filters.length === 0) {
return true;
}
for (const filter of filters) {
if (ObjectUtils.equals(value, filter)) {
return true;
}
}
return false;
};
Planned for 10.0.1.
We've discussed this internally as 10.0.1 should be released today, we postpone it to 10.0.2 as it requires more thinking. It has high priority so will be solved in the next one.