how to hide some variables from multi row variable set?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2024 11:54 PM
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
how to hide from the table as well?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2024 01:18 AM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-16-2024 05:36 AM
You can hide fields in list with css.
Take your developer tool from your browser.
For TH:
And for TD:
Now right-click and ctrl on the widget and then click instance in page editor:
Add CSS here:
th[id="id-question-a6974cb91b64d210b362997bbb4bcb19"]
{
display: none;
}
td[headers="id-question-a6974cb91b64d210b362997bbb4bcb19"]
{
display: none;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2025 09:29 AM
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!