How to hide the title of a variable set
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2022 12:12 PM - edited 10-28-2022 09:24 PM
Dear Experts.
I have a requirement to show or hide certain variables under certain conditions.
So I have used "g_form.setVisible" in the UI policy to hide the variables in the catalog task.
However, I am having trouble seeing the title of the variable set to which the hidden variable belongs.
I would like to hide the title of the variable set without using the SysID of the variable set if possible.
Please let me know if you have any insight.
▼Added on 10/29/2022
Added an image drawing.
Please refer to it as well.
Best regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-26-2025 01:33 AM
Hello, i know it is already a year and more later as a response, but i think it can help someone, having the same requirement.
My requirement was to hide the "title" field from a MRVS (Multi-Row variable set), so i completed the task using a "onLoad" client script with following code, without manipulating the DOM, using only OOTB method of g_form:
function onLoad() {
g_form.setLabelOf("<name_of_MRVS>", "");
}
