is there a way to change the display value of the list collector by using the REF qualifier field?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-25-2017 01:41 PM
is there a way to change the display value of the list collector by using the REF qualifier field?
- Labels:
-
Service Catalog

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-25-2017 01:44 PM
Hello Rey,
The short answer is No However you can find the below blog helpful.
https://www.servicenowguru.com/system-ui/customizing-slushbucket/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-25-2017 01:49 PM
ok thanks i have seen it done before with some scripting as an advanced ref qualifier... thats why i figured i asked. i thought there was a template for this and i can just add the variable name 🙂

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-25-2017 01:51 PM
Thanks Rey for the update. Please let me know if that works for you 😃
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-25-2017 01:45 PM
This worked for me using a catalog client script
function onLoad() { //Apply a default filter to the list collector variable var collectorName = 'variable name here'; var filterString = specified what to filter out here; //Try Service Portal method try{ var myListCollector = g_list.get(collectorName); myListCollector.reset(); myListCollector.setQuery(filterString); } //Revert to Service Catalog method catch(e){ //Hide the list collector until we've set the filter g_form.setDisplay(collectorName, false); setCollectorFilter(); }