MobileCRM.AboutInfo.requestObject - Resconet/JSBridge GitHub Wiki

[v8.2] Asynchronously gets the AboutInfo object with branding information.

Arguments

Argument Type Description
callback function(Object) The callback function that is called asynchronously with the about info object.
errorCallback function(errorMsg) The errorCallback which is called in case of error.

This example demonstrates how to get application about info.

// Request About info object
MobileCRM.AboutInfo.requestObject(function (aboutInfo) {
	/// <param name="aboutInfo" type="MobileCRM.AboutInfo"/>
	var appReport = "About Info : \n";
	for (var prop in aboutInfo)
		appReport += prop + ": " + aboutInfo[prop] + "\n";
	MobileCRM.bridge.alert(appReport);
}, MobileCRM.bridge.alert // alerts an error
);