how to hide some variables from multi row variable set?

mounika32
Tera Contributor

Hi All,

how to hide few variables from multi row variable set? I have used ui poilcy its hiding from the form when user clicks on ADD but its not adding from the table

mounika32_0-1708070059177.png

 

how to hide from the table as well?

7 REPLIES 7

Aniket Chavan
Tera Sage
Tera Sage

Hello @mounika32 ,

Based on my understanding, currently, there isn't a direct method to hide variables from the Multi-Row Variable Set  table view after hiding them within the form. Unfortunately, this seems to be a limitation in the current functionality.

 

In my experience, whenever I've hidden variables within the MRVS, I've encountered the challenge of not being able to hide them from the table view of MRVS. 

 

Please Mark Correct if this solves your query and also mark 👍Helpful if you find my response worthy based on the impact.

 

Thanks,

Aniket

mariuskrug93
Tera Contributor

You can hide fields in list with css.

 

Take your developer tool from your browser.

For TH:

th.png

 

And for TD:

td.png

 

Now right-click and ctrl on the widget and then click instance in page editor:

mariuskrug93_0-1726489942525.png

 

Add CSS here:

th[id="id-question-a6974cb91b64d210b362997bbb4bcb19"]
{
  display: none;
}
td[headers="id-question-a6974cb91b64d210b362997bbb4bcb19"]
{
  display: none;
}

mariuskrug93_1-1726490151585.png

 

 

This works great on the item form but the column still appears on the RITM. I wish there was an easy way to hide in both...Thanks!