- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2022 06:07 PM
I want to hide the variables in the variable set when the form is opened.
I want to hide the 'カテゴリ'.
How can I do this?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2022 07:30 PM
DOM manipulation is strongly discourage because it may break in the future. Nevertheless, column in mrvs can be hidden using it.
1. Set Category field to be hidden.
2. Display the form and right click on the mrvs header and select "inspect".
3. Find the "table" tag and memo the id.
4. Create a Client Script on the form (not in the mrvs). Make sure "Isolate script" is unchecked.
function onLoad() {
try {
document.getElementById("table_119f7e162fc141109d10b2e72799b659_rows").firstChild.firstChild.firstChild.lastChild.style.display = 'none';
} catch (e) {
alert(e.message);
}
}
Execution result:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2022 06:19 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2022 06:40 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2022 07:30 PM
DOM manipulation is strongly discourage because it may break in the future. Nevertheless, column in mrvs can be hidden using it.
1. Set Category field to be hidden.
2. Display the form and right click on the mrvs header and select "inspect".
3. Find the "table" tag and memo the id.
4. Create a Client Script on the form (not in the mrvs). Make sure "Isolate script" is unchecked.
function onLoad() {
try {
document.getElementById("table_119f7e162fc141109d10b2e72799b659_rows").firstChild.firstChild.firstChild.lastChild.style.display = 'none';
} catch (e) {
alert(e.message);
}
}
Execution result: