top of page

Hide export option from dashboard

This script allow dashboard owner to control which export options should be visible to other users for that dashboard.





Add this script to your dashboard. This script will hide all export options from dashboard and all widget in that dashboard.

If you don't want to hide a specific export option, change its value to true.

dashboard.on('initialized', function(se, ev){
	
	if(se.instanceType != 'owner')
	{
		se.userAuth.dashboards.export_jpeg = false // Hide download jpeg option dashboard menu
		se.userAuth.dashboards.export_pdf = false // Hide download pdf option dashboard menu
	
		se.userAuth.widgets.export_csv = false //Hide download csv option from all widgets in dashboard
		se.userAuth.widgets.export_png = false //Hide download png option from all widgets in dashboard
		se.userAuth.widgets.export_pdf = false //Hide download pdf option from all widgets in dashboard
	}

})


Comments

Rated 0 out of 5 stars.
No ratings yet

Add a rating
BI Next Level white logo

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
Copyright © 2024. All Rights Reserved. Designed, Developed & Maintained  by Intertoons
bottom of page