Employee Center Sub-Topics Widget
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2025 03:13 AM
Is there way to show all topic without clicking "View ALL" o r Expand to show all topics icon?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2025 03:18 AM
Hi @alona3
I think no, as this is like a standard size which shows the sub topics like this, also expanding it by default can impact the user experience,
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]
****************************************************************************************************************
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2025 03:57 AM
For this case, you need to clone the Sub-Topics widget.
Then, on the emp_taxonomy_topic page, replace the existing Sub-Topics widget with the newly cloned one.
Finally, in the Client controller of the new widget, set c.data.viewAllMode to true.
c.data.viewAllMode = true;
See the screenshots below for reference.
Additionally, you can add scrolling to the sub-topics section if needed. Adding these styles to getSubtopicsContainerStyle function:
"max-height": "12.4rem",
"overflow-y": "scroll"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2025 03:41 AM
Thanks @Maryna K , it is working exactly as you described!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2025 01:29 AM
You're very welcome! I'm glad to hear it was helpful😊.