- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-27-2016 09:50 AM
Hi All,
I need a quick help in increasing width of slush bucket in ui pages.
I have gone through the servicenowguru Slushbucket Archives and added the UI Page and script include .It does working as expected but only thing I have noticed is width of the populating slush bucket is very small.
I am not sure where to update the width for the slushbucket which is being populated from UI pages.
I have tried setting the ui Page width through glidedialogwindow ui page size resetted but not the slush bucket.
Please help me to get this done .
Thanks in advance.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-27-2016 11:36 AM
Hi Vimal,
Get the id of the bucket as :
var bucket=gel('variable_name');
bucket.size='30px';
bucket.style.width='400px'; // adjust accordingly.
Thanks
Akhil
Hit Like/Helpful/Correct, if applicable.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-27-2017 02:11 AM
Hi Bhavya ,
I have written this above piece of code in UI Pages Client script to adjust the slush bucket properties.
Thanks!