- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-31-2016 08:22 AM
Folks,
Is it possible to hide 'Save' button in reports? I don't want show this to end users?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-31-2016 10:37 AM
Hello Robert,
Thanks for the help. I am able achieve this using UI script (we can use with client script as well)
window.addEventListener('load', reportVisitorStyle());
function reportVisitorStyle()
{
window.onload = function()
{
//get iframe reference and hide elements
var frame = document.getElementById("Visitor Count2");
if(frame!= null)
{
frame.contentWindow.document.getElementById('save-report').style.display = 'none';
frame.contentWindow.document.getElementById('dropdownMenu1').style.display = 'none';
frame.contentWindow.document.getElementsByClassName('main-settings')[0].style.display = 'none';
}
};
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-25-2023 08:08 PM
Hi @bcmc01 ,
Please help me how to configure client script to call this ui script?
Please help me with the response as this requirement is very urgent to me.
Thanks,
Ankita Kolhe