empty value testing

This commit is contained in:
SPRINX0\prochazka 2024-10-22 15:23:32 +02:00
parent 32c7919885
commit 24408dd7c2

View File

@ -93,8 +93,17 @@
);
}
if (filterBehaviour.supportEmpty) {
res.push(
{ onClick: () => setFilter('EMPTY, NULL'), text: 'Is Empty Or Null' },
{ onClick: () => setFilter('NOT EMPTY NOT NULL'), text: 'Has Not Empty Value' }
);
}
if (filterBehaviour.supportNumberLikeComparison) {
res.push(
{ divider: true },
{ onClick: () => openFilterWindow('>'), text: 'Greater Than...' },
{ onClick: () => openFilterWindow('>='), text: 'Greater Than Or Equal To...' },
{ onClick: () => openFilterWindow('<'), text: 'Less Than...' },