top of page

Hide widgets from a dashboard

Updated: Nov 27, 2024

Here is a script to hide one or widgets from a dashboard.


(Its possible to modify the script so that a widget can be hide/unhide based on some condition or value selected in a filter)


ree

Steps:

  1. Add below script to dashboard

  2. Update the variable 'widgetList' with list of widget to hide

  3. Save the script and refresh dashboard


dashboard.on('widgetrefreshed', function (se, ev) {

	widgetList = ['625e34a5aer456002ea7b64d', '6789cdc6fa34563002er56456']
	
	if(widgetList.includes(ev.widget.oid))
	{
		$(`widget[widgetid="${ev.widget.oid}"]`).closest('.dashboard-layout-subcell-host').addClass('dontshowme-parent')
	}
});


Comments

Rated 0 out of 5 stars.
No ratings yet

Add a rating

BI Next Level is your trusted resource for BI customization, data solutions, and expert insights. Explore practical tips, scripts, and tutorials for tools like Sisense, Python, and SQL. Let’s transform your data into impactful insights together.

Quick Links
Connect with us
bottom of page