master-detail view

This commit is contained in:
Jan Prochazka
2020-05-10 08:58:56 +02:00
parent 1e91abf37b
commit 4e0d8d403c
12 changed files with 161 additions and 41 deletions

View File

@@ -0,0 +1,4 @@
export function getFilterValueExpression(value) {
if (value == null) return 'NULL';
return `="${value}"`;
}

View File

@@ -1,2 +1,3 @@
export * from './parseFilter';
export * from './getFilterType';
export * from './filterTool';