Forum Discussion

rahuldhomane's avatar
07-08-2022
Solved

Hide Widget Detail icon

Hi, Is there a way to hide the 'i' icon showing the widget details at the top right corner of every widget? Thanks in Advance!
  • harikm007's avatar
    harikm007
    07-11-2022

    Hi rahuldhomane ,

    Try this dashboard script:

    dashboard.on('widgetready',function(se, ev) {
    	$('.widget-toolbar-btns .app-icon--general-info-circle').parent().hide()
    })

    -Hari