- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2014 08:25 AM
Hi,
is it possible to disable activity stream button on lists ?
Button is on attached picture.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-06-2015 12:47 AM
Hi Christina,
Below are the properties to hide activity stream on list layout and on form layout.
1)Hide activity stream on List Layout ----- glide.ui.activity_stream.list_button
2)Hide activity stream on Form Layout ----- glide.ui.activity_stream.form_button
Regards,
Harish Murikinati.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2014 08:40 AM
I'm not aware of a property that controls whether this is displayed, but it could exist. You could always run a global ui script with the following code to hide the button. Beware that a global ui script runs on every page load and having too many of them can slow your instance down.
if ($$('.list_stream_button')[0]) {
$$('.list_stream_button')[0].hide();
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2014 09:15 AM
Minor adjustment that I had to make to make the above code work:
addLoadEvent(hideListStreamButton);
function hideListStreamButton(){
if ($$('.list_stream_button')[0]) {
$$('.list_stream_button')[0].hide();
}
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2014 12:18 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2014 03:58 PM
That option is not selected on any of our tables and Activity List still was visible.