MobileCRM.UI.EntityForm.selectView - Resconet/JSBridge GitHub Wiki
Selects the associated entity list view by its name.
Argument | Type | Description |
---|---|---|
tabName | String | The name of the associated entity list tab. |
viewName | String | The view name. |
This example demonstrates how to obtain MobileCRM.UI.EntityForm object. It will select the tab with associated contact list and set the view by name
MobileCRM.UI.EntityForm.requestObject(function (entityForm) {
entityForm.selectView("contact.parentcustomerid.account", "View name");
}, MobileCRM.bridge.alert, null);