Hi Dojo,
In below example I want to use the filter to show only entries for which column Compression Type has value H.264 or Uncompressed. I tried with "Compression Type":"H.264" "Compression Type":"Uncompressed", but this results in an AND statement instead of an OR.
You can use a regex filter for complex conditions. In your case that would be: "Compression Type":regex:"H\.264|Uncompressed"
Works like a charm. Thanks!
Is this information documented on https://docs.dataminer.services/?
If not, can one of you contribute and add this in the documentation? 🙂
If you're ok with using a server-side filter, I believe it should be possible through the 'TableRowFilter' shape data.
In there, you can use the 'fullFilter=' syntax, which supports OR-statements.
More info here
As far as I know ‘or’ statements in these filters are not yet possible.
It would be interesting in some cases indeed. I’m also thinking about filters when filtering on these tables in Visual Overview
Probably a new feature request.