- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-27-2021 02:17 PM
I have a Multi-row variable set which I am using in a catalog item , how to hide a variable on that , I am not able to hide the Variable Using UI policy as the visible is grayed out
I also created a onload cS still not working
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2021 01:36 PM
Eg: I have location reference variable on my MRVS then I added location table to match it .
Quick Demo
Hope it will help you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2021 02:29 PM
Hi,
I am able to hide the field on the MRVS pop-up but the table still shows it is visible. Is it possible to hide/unhide the field in the parent form table as well?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2021 12:33 PM
Ok, I went old-school on it - after this, I'm out of tricks! Try something like this in your catalog item onload script:
function onLoad() {
//call process
process();
}
function process() {
setTimeout(function() {
var vset = 'f0ce3f2b07b1a010c5cff1e08c1ed045';
//ok, this gets rid of the header row;
var eles = document.getElementById(vset + '_table').children[0].children;
for (var i = 0; i <= eles.length - 1; i++) {
if (eles[i].children != undefined)
var child = eles[i].children;
var last = child.length - 1;
child[last].style.display = 'none';
}
//And this hides the rows
eles = document.getElementById(vset + '_table').children[1];
for (var r = 0; r <= eles.children.length; r++) {
if (eles.children[r].children.length > 0) {
last = eles.children[r].children.length - 1;
eles.children[r].children[last].style.display = 'none';
}
}
}, 250);
}
Here's to hoping!
I hope this helps!
If this was helpful or correct, please be kind and remember to click appropriately!
Michael Jones - Proud member of the CloudPires team!
Michael D. Jones
Proud member of the GlideFast Consulting Team!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2021 01:30 PM
Adding my point of view.
If the intent was for reporting point of view then you can built a database view and there you can join those table as well as reference table.
This way, you can avoid sys_id as well.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2021 01:36 PM