Runtime filters not working
Hi, we're trying to use a runtime filter for one of our pages that embeds a liveboard (using the React SDK LiveEmbed component) and having a problem. I'm passing the following to the runtimeFilters prop but it isn't causing any change to the liveboard.
When we add a filter field inside the liveboard directly, though, it works.
2 Replies
hey @billsaysthis would it be possible to share any Errors in console or the HAR files with us
along with a bit more of the code snipet you already posted , would be great if you can post the whole embed instance creation code
Also instead of NOT_IN , can you try this
{
columnName: 'True Open',
operator: RuntimeFilterOp.IN,
values: ['Bot', 'Likely a Bot'],
negate: true
},
There are no console errors to share. As for a HAR, sure, but which call is the one to share?
Initial tests show that the altered object produces the desire results, thanks.