Skip to content

Experimental

Hide columns

Hide column(s) of children tabs by column-name(s) in Detail View

Single column

Hide a single column named column1 from children tab subtablename:

1
2
3
jQuery(document).ready(function() {
    dv.getChildrenTabs().hide("subtablename", "column1")
});

Multiple Columns

Hide multiple columns column1, column2, ... from children tab subtablename

1
2
3
 jQuery(document).ready(function() {
     dv.getChildrenTabs().hide("subtablename", ["column1", "column2", "..."])
 });

See also: