You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rescocrm edited this page May 15, 2023
·
9 revisions
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 hideentityForm.setTabVisibility("General",true);},MobileCRM.bridge.alert,null);