- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-13-2024 12:06 AM
Hi there! While using slush bucket, the list it shows is not complete and also it doesn't show the whole text. Is there a way to increase the count of list it shows in slush bucket and also if we can show the whole text in slush bucket. Thanks..
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-13-2024 06:32 AM
The max number of items displayed in slushbuckets is controlled by glide.xmlhttp.excessive system property. The default value is 100. Increasing it can have impact on performance.
Blog: https://sys.properties | Telegram: https://t.me/sys_properties | LinkedIn: https://www.linkedin.com/in/slava-savitsky/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-18-2024 09:01 AM
Unfortunately, there is no simple way to fix it.
The preview text that is displayed under the slushbucket is truncated on the server side before being sent to the client. There is nothing we can do about it because the corresponding code is out of our reach.
Therefore, the only viable option is to somehow add "overflow-x: auto;" CSS property to the select boxes on that page so that a horizontal scroll appears if the option labels are too long. A dirty trick to achieve this would be to create a global UI script with the following code:
if (self.location.pathname == '/sys_m2m_template.do') {
var sheet = window.document.styleSheets[0];
sheet.insertRule('#select_0, #select_1 { overflow-x: auto; }', sheet.cssRules.length);
}
A cleaner solution would be to somehow edit the CSS code. Perhaps it is possible to achieve the desired result by editing the Next Experience theme, but I am not quite sure about that.
Blog: https://sys.properties | Telegram: https://t.me/sys_properties | LinkedIn: https://www.linkedin.com/in/slava-savitsky/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-13-2024 06:25 AM
Hi @ritu_singh
https://www.servicenow.com/community/itsm-forum/specific-table/m-p/2663448
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
‎06-13-2024 06:32 AM
The max number of items displayed in slushbuckets is controlled by glide.xmlhttp.excessive system property. The default value is 100. Increasing it can have impact on performance.
Blog: https://sys.properties | Telegram: https://t.me/sys_properties | LinkedIn: https://www.linkedin.com/in/slava-savitsky/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-13-2024 06:34 AM
As for the long labels, the answer depends on where exactly you are using that slushbucket. From your screenshot, it is not possible to tell what page it is.
Blog: https://sys.properties | Telegram: https://t.me/sys_properties | LinkedIn: https://www.linkedin.com/in/slava-savitsky/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-13-2024 08:34 AM
I'm actually mapping control objectives to the policy. I want either full text to display or if is it possible to scroll horizontally.