- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-21-2016 05:59 AM
Guys,
Is it possible to disable the Dashboards and Forms in CI in Helsinki? PFB image for more details.
(Seems like it's not an UI action)
Please suggest.
Thanks,
Fathah
Abdul Fathah
If my answer has helped with your question, please mark my answer as accepted solution and give a thumb up.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-21-2016 06:30 AM
Hi Fathah,
Its an UI action,follow the steps to disable it.
Steps to disable Dashboards and Forms in Configuration item in Helsinki
- Go to Application Navigator--->System UI--->UI Action
- Search View Toggle
3.Uncheck Active and update it.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-21-2016 06:18 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-21-2016 06:30 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-21-2016 07:02 AM
Thank you so much guys. It works.
Abdul Fathah
If my answer has helped with your question, please mark my answer as accepted solution and give a thumb up.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-21-2016 06:46 AM
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';
}
}