How to disable Dashboards and Forms in Configuration item in Helsinki

Abdul Fathah
Mega Guru

Guys,

Is it possible to disable the Dashboards and Forms in CI in Helsinki? PFB image for more details.

find_real_file.png(Seems like it's not an UI action)

Please suggest.

Thanks,

Fathah

Thanks,
Abdul Fathah
If my answer has helped with your question, please mark my answer as accepted solution and give a thumb up.
1 ACCEPTED SOLUTION

abdulrizwan
Kilo Expert

Hi Fathah,


Its an UI action,follow the steps to disable it.


Steps to disable Dashboards and Forms in Configuration item in Helsinki


  1. Go to Application Navigator--->System UI--->UI Action
  2. Search View Toggle

b.png


    3.Uncheck Active and update it.


a.png


View solution in original post

4 REPLIES 4

Gopinath Laksh1
Kilo Contributor

Hi ,



Go to UI actions of Configuration item table and find UI action named "View Toggle" and uncheck in form button and then save it and refresh CI form. now the form/dashboard will be disabled.



Hope this will be helpful to you.



imageci.png


Thanks


Gopinath L


abdulrizwan
Kilo Expert

Hi Fathah,


Its an UI action,follow the steps to disable it.


Steps to disable Dashboards and Forms in Configuration item in Helsinki


  1. Go to Application Navigator--->System UI--->UI Action
  2. Search View Toggle

b.png


    3.Uncheck Active and update it.


a.png


Thank you so much guys. It works.


Thanks,
Abdul Fathah
If my answer has helped with your question, please mark my answer as accepted solution and give a thumb up.

bala_sn
Kilo Expert

There may be better ways. But here's one way.


Create a new client script.


Name: Hide Dashboard-Form toggle


Table: cmdb_ci


When: onLoad


Inherited: True


Script:


function onLoad() {


    var tog = document.getElementById("toggle_view");


    if(tog != null) {


          tog.style.display = 'none';


    }


}