Version 2020/10
// file: hooks/TABLENAME-dv.js var dv = AppGiniHelper.DV; // hide a single column named "column1" from children tab "subtable1" dv.getChildrenTabs().hide("subtable1", "column1"); // hide multiple columns from children tab "subtable2" dv.getChildrenTabs().hide("subtable2", ["column1", "column2", "..."]);
Sample
Child-tab tasks
(DE: Aufgaben) contains four columns I'd like to hide: created_on
, created_by
, modified_on
, modified_by
// file: hooks/TABLENAME-dv.js var dv = AppGiniHelper.DV; var tabs = dv.getChildrenTabs(); tabs.hide("tasks", ["created_on", "created_by", "modified_on", "modified_by"]);
Those four columns have been hidden.
Do you like it?
We can only get better if you give us constructive suggestions for improvement. Just voting "No" without giving reasons or suggestions is not helpful and cannot lead to changes.
If you have been searching for a completely different solution than the subject says, this article can not be and will not be helpful for you. In these cases you should consider not to vote.
This is website feedback, only. This voting is not a support form nor ticket system.