- 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-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-19-2024 12:20 AM
Thank you so much. Tried the UI script and it's working. I'll look into it more. Thanks again!