- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-04-2019 10:27 PM
Hello,
I have a UI action button on the incident form - I need something like below slush bucket to be viewed after the button is clicked using UI page for choosing users which will probably be placed in an array and this array will be used in a notification as an array of recipients.
I want to used GlideDialogForm in my UI action script - I now how to get the incident record ID to tie this "slus bucket data" to particular incident using g_form.getUniqueValue();
This may sound complicated so further questions are welcome.
Thanks a lot for any help,
Milan
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-05-2019 02:57 AM
Hello Milan,
1. Go to the link: Add a Slush Bucket Control to a Dialog Box
2. Download the XML and upload it to your instance.
3. Customize as you needed.
Please mark as Correct Answer/Helpful, if applicable.
Thanks!
Abhishek Gardade
Abhishek Gardade

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-04-2019 10:58 PM
Hi
Go through the below steps :-
https://community.servicenow.com/community?id=community_blog&sys_id=5ecca265dbd0dbc01dcaf3231f961932
Regards,
Omkar Mone
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-04-2019 11:11 PM
Thanks I will definitely go through this..Milan

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-04-2019 11:15 PM
Hi Milan,
If my response helped you please mark correct answer to close this thread.
Cheers.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-05-2019 12:46 AM
Hi Omkar,
I tried this however I have problems to make it function even if I exactly follow the steps.
Once I press the UI action button "Dialog Slushbucket" it just does not react at all.
I also have my own UI action (not sure if correct one) but it generates an error...
After the error the slush bucket kind of works but after clicking "Submit" button of the slush buckt the same error appears again...
Not so advanced in front end Servicenow coding to be honest...
Anyway thanks for your help.
Milan
"My own" UI action:
function emailChoice(){
var uiPage = 'SlushBucketDialog';
var sysID = g_form.getUniqueValue();
var tableName = g_form.getTableName();
var dialog = new GlideDialogForm('Send e-mail to recipients', uiPage);
dialog.setSysID(sysID);
dialog.render();
}