Slushbucket UI

ritu_singh
Tera Contributor

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..

2 ACCEPTED SOLUTIONS

Slava Savitsky
Giga Sage

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.

View solution in original post

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.

View solution in original post

11 REPLIES 11

Dr Atul G- LNG
Tera Patron
Tera Patron

Hi @ritu_singh 

 

https://www.servicenow.com/community/developer-forum/increase-the-width-of-slushbucket-in-ui-page/m-...

 

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]

****************************************************************************************************************

Slava Savitsky
Giga Sage

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.

Slava Savitsky
Giga Sage

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.

I'm actually mapping control objectives to the policy. I want either full text to display or if is it possible to scroll horizontally.