Skip to content

MobileCRM.UI.EntityForm.selectView

rescocrm edited this page May 15, 2023 · 9 revisions

Selects the associated entity list view by its name.

Arguments

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);

Clone this wiki locally