Hide the widget's Button from the Toolbar for Viewer User
Hide the widget's Button from the Toolbar for Viewer User
We will be learning how to hide information/additional buttons on the widgets from the Viewer user. Also, it is possible to hide these buttons from all users.
For this press the 3 dots in the upper right corner of the dashboard to Edit Script
In the new window, paste this code and press the 'Save' button in the top right corner.
dashboard.on('widgetready', function(se, ev){
if (prism.user.roleName == 'consumer')
{
$('widget-header', element.parent()).children('widget-toolbar').css('display','none');
}
})
If we comment on the second line, we can hide these buttons from all users.
dashboard.on('widgetready', function(se, ev){
// if (prism.user.roleName == 'consumer')
{
$('widget-header', element.parent()).children('widget-toolbar').css('display','none');
}
})
Now you know how to hide the additional/information buttons from the widgets using simple JavaScript.
Published 03-29-2023
Anonymous