MobileCRM.UI.EntityForm.setTabVisibility - Resconet/JSBridge GitHub Wiki
Sets the visibility of the form tab defined by its name.
Arguments
Argument | Type | Description |
---|---|---|
tabName | String | The name of the tab |
visible | Boolean | Defines desired visibility state. |
This example demonstrates how to set visibility for General tab on entity form.
MobileCRM.UI.EntityForm.requestObject(function (entityForm) {
// The name of the tab, and true to show or false to hide
entityForm.setTabVisibility("General", true);
}, MobileCRM.bridge.alert, null);