ContributionsMost RecentNewest TopicsMost LikesSolutionsRe: Filter Drill Down Fields Per Widget is there a version of this that runs on the 2025 Linux versions of Sisense? Re: Configure Sisense for multiple domains Hello, I've no idea if we have nginix-ingress install. We have an old Windows version of Sisense v8.1, so this doesn't run in IIS. But I see there is some SisenseWeb site set up in IIS, but this doens't render so much be old. So can you expand on what you meant please? thanks Configure Sisense for multiple domains We would like to configure our Azure application gateway to allow access to Sisense under 2 totally different domains. One is a legacy domain and one is our new domain. I raised a ticket with Sisense support. Sisense itself cannot by configured. they suggested setting up routing in our load balancer / DNS to do this. So I did this, but Azure Application gateway throws an error. The problem is the SSL certificate installed in Sisense is for the old domain. anybody got round this . perhaps a forwardiing instead of a redirect? SolvedIssues trying to set up a data connector to SQL Server using server name Hello I can connect to my SQL Server using the ip address but can't using the server name . I have added an entry to the etc/hosts file on the server (and restarted it), but I still cannot connect by server name. I can ping the server name on the Linux server. Any one got any ideas? Thanks Re: How to synchronize 2 filters Hello se.refresh seems to work. But should we also use the filters.update. if so, do we call this first and then refresh. Also what parameters would we pass into the filters.update method as it needs an object and some flags passing Re: How to synchronize 2 filters sure, here is the script. We have 5 filters, each pointing to a different data source. the top level filter is enabled, the other 4 are locked, but these should be automatically set based on the values selected in the top filter. dashboard.on('filterschanged', function(se, ev) { if (ev != null && ev.items.length > 0 && ev.items[0].jaql.table == "AT Structure") -- this is the top level / enabled filter { --are all items selected? if (ev.items[0].jaql.filter.members == null) { se.filters.$$items[1].levels[1].filter.all = true; se.filters.$$items[1].levels[1].filter.explicit = false; se.filters.$$items[2].levels[1].filter.all = true; se.filters.$$items[2].levels[1].filter.explicit = false; se.filters.$$items[3].jaql.filter.all = true; se.filters.$$items[3].jaql.filter.explicit = false; se.filters.$$items[4].levels[1].filter.explicit = false; se.filters.$$items[4].levels[1].filter.all = true; se.$dashboard.refresh(); } else { --Set the "child" filters applicable to the Manager(s) selected in filter 1 let managers = []; for (let i = 0; i < ev.items[0].jaql.filter.members.length; i++) { if (ev.items[0].jaql.filter.members[i] == 'Dean Thomas') { managers.push('Portfolio 1'); } if (ev.items[0].jaql.filter.members[i] == 'Matt Davis') { managers.push('Portfolio 2'); } if (ev.items[0].jaql.filter.members[i] == 'Rachael Hawkins') { managers.push('Portfolio 3'); } if (ev.items[0].jaql.filter.members[i] == 'Rebecca Dunning') { managers.push('Portfolio 4'); } } se.filters.$$items[1].levels[1].filter.all = false; se.filters.$$items[2].levels[1].filter.all = false; se.filters.$$items[3].jaql.filter.all = false; se.filters.$$items[4].levels[1].filter.all = false; se.filters.$$items[1].levels[1].filter.explicit = true; se.filters.$$items[2].levels[1].filter.explicit = true; se.filters.$$items[3].jaql.filter.explicit = true; se.filters.$$items[4].levels[1].filter.explicit = true; se.filters.$$items[1].levels[1].filter.members = managers; se.filters.$$items[2].levels[1].filter.members = managers; se.filters.$$items[3].jaql.filter.members = managers; se.filters.$$items[4].levels[1].filter.members = managers; se.$dashboard.refresh(); } } Re: How to synchronize 2 filters Hello, we are trying to achieve the same thing - linking filters together. But, these filters are also linked to different data sources to the parent filter. I've added code to the filterschanged event, I'm correctly setting the "child" filters based on the parent filter, and then calling the dashboard refresh. The filters get updated correctly, the dashboard appears to refresh, but any widget attached to the "child" filters are not getting updated. If I hit ctrl+f5, they do update. Any assistance would be great as we have a particularly tricky customer wanting this resolved