- 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
‎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
‎08-27-2016 03:41 PM
I did this very recently.
Just adding to Akhil's post. It also adjusts according to the ui page. So make sure u increase that also if the above doesn't work.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-28-2016 11:20 PM
Thanks For your quick reply @akhil bhat and @anurag tripathi.
It helped me to alter my scripts as below
var rt=slush.getRightSelect();
rt.style.width='150px';
rt.style.height='100px';
var lt=slush.getLeftSelect();
lt.style.width='150px';
lt.style.height='100px';
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-25-2017 01:25 AM
Hi VimalPriya,
Please help me understand where you have written the above code to get it working as i also have the same situation.
Regards,
Bhavya