You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currently there are only predefined filters for highlights. It would be great if user can write simple condition expressions as filter criteria.
For example, one could write criteria like below and highlight it:
currently there are only predefined filters for highlights. It would be great if user can write simple condition expressions as filter criteria.
For example, one could write criteria like below and highlight it:
Supported operators could be:
&& || ! ( ) < <= > >= != ==
Supported properties could be anything available in column chooser.
There is one similar filter implementation I wrote for a log library, just for reference:
https://github.com/timepp/bdlog/blob/master/include/detail/logfilter.h
the above code accepts filter such as
level > 3 && (tag = abc || tag = def)
The text was updated successfully, but these errors were encountered: