-
Notifications
You must be signed in to change notification settings - Fork 24
MobileCRM.UI.EntityForm.setTabVisibility
rescocrm edited this page May 15, 2023
·
9 revisions
Sets the visibility of the form tab defined by its name.
| 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);