Skip to content

MobileCRM.UI.EntityForm.getDetailView

rescocrm edited this page May 15, 2023 · 9 revisions

Returns the DetailView by its name.

Arguments

Argument Type Description
name String A name of DetailView.

This example demonstrates how to get the DetailView on edit form by its name.

function getController() {
	MobileCRM.UI.EntityForm.requestObject(function (entityForm) {
		/// <param name='entityForm' type='MobileCRM.UI.EntityForm'/>
		var generalView = entityForm.getDetailView("General");
	}, MobileCRM.bridge.alert);
}
Clone this wiki locally