Can you make a list collector in record producer display like a list?

ritaaudi
Tera Contributor

Hi: A list collector in a record producer displays like this:

find_real_file.png

This takes up a lot of unnecessary space. Is it possible to make it display like a watch list in the tool as such:

find_real_file.png

Thank you, Rita

1 ACCEPTED SOLUTION

Hi Rita,



The width of the variable can be set via using DOM. For this you need to write an onLoad Catalog Client Script on the catalog Item as of below:


function onLoad() {


  //Get the Variable' Element ID by using Inspect Element on the Catalog Item or by pressing F12


  var el = document.getElementById('variable_IO:b437883b6fe63200f9ac52b10b3ee45e');


  el.style.width= '350px';


}



You can find the Variable ID by using inspecting element. Please find below how I have got the variable's Element ID.


find_real_file.png



Once You are done with the Scripting, it would look like below:


find_real_file.png



And my bad for my last response on the 'i' icon. For variable of glide_list type, there is no 'i' icon available.



I hope this helps.Please mark correct/helpful based on impact


View solution in original post

11 REPLIES 11

Hi ritaaudi,



If I have answered your question, please mark my response as correct so that others with the same question in the future can find it quickly and that it gets removed from the Unanswered list.


If you are viewing this from the community inbox you will not see the correct answer button.   If so, please review How to Mark Answers Correct From Inbox View


Deepak Ingale1
Mega Sage