- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2020 06:46 AM
Hi All,
I want to display multiple announcements on the Service Portal simultaneously without the expand/collapse button.
Currently one needs to click on the expand /collapse button to view multiple announcements, as below :
Can anyone tell me how to achieve this?
Thank you,
Ayshee Chattopadhyay
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2020 07:33 AM
If you want to display the announcement without giving the option to use to dismiss it, you can achieve this by.
Please mark reply as Helpful/Correct, if applicable. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2020 03:17 AM
HI Ayshee,
Can you share the widget which you are using for announcements, because the screenshot which you have shared looks like little different then the widget i told to change.
Thanks,
Mohit Kaushik
Mohit Kaushik
ServiceNow MVP (2023-2025)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2020 04:02 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2020 10:57 AM
This can be done by adding a new js dependency on the Header Menu widget.
$(document).ready(function() {
var context = angular.element('.sp-announcement-root').scope();
if (context && context.c && context.c.toggleShowAll)
context.c.toggleShowAll();
});
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2021 12:59 PM
This worked for me.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2021 04:31 AM
Hi,
Can this also be used for the widget based announcements as well or just the banner based ones?