Hi there,
we are looking for a solution to search for empty values. We want to figure out specifc data sets which are not reviewed so far.
We used the "equal" and "notequal" operator. But we are uncertained if we should use '' for the empty field.
This is our code:
let filters = [];
let wahlbezirk_leer = appPage.F_Wahlbezirk_erledigt.getValue();
if(wahlbezirk_leer === 'leer'){
filters = filters.concat([
{name: "F_Wahlbezirk1", operator: "equals", value: ''}
]);
}
if(wahlbezirk_leer === 'bearbeitet'){
filters = filters.concat([
{name: "F_Wahlbezirk1", operator: "notequals", value: ''}
]);
}
Thanks a lot in advance.
Regards,
Maria