top of page

Hide widgets from a dashboard

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)



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')
	}
});


267 views2 comments

Recent Posts

See All
bottom of page