Solved
Forum Discussion
harikm007
09-18-2024Data Warehouse
Hi jalam ,
Try below dashboard script to hide a filter by title
const filterToHide = 'Category'
dashboard.on('widgetready', (d, args) => {
$('.global-filters .ew-content-host .ew-panel .ew-item-wrapper').each(function(index, element){
if ($(this).find('.f-header-host .ew-i-caption').text().toUpperCase() === (filterToHide.toUpperCase())) {
$(this).css('display', 'none')
} else {
$(this).css('display', 'block')
}
})
})
-Hari