Skip to content

MobileCRM.Localization.get

rescocrm edited this page May 15, 2023 · 9 revisions

Gets the display string for the passed id.

Arguments

Argument Type Description
id String Display string id.

This example demonstrates how to get the localized text.

MobileCRM.Localization.initialize(startPointFn, MobileCRM.bridge.alert);
function startPointFn(localization) {
	// returns the localized text for localization ID "Cmd.Action".
	var actionText = MobileCRM.Localization.get("Cmd.Action");
	MobileCRM.bridge.alert(actionText);
}
Clone this wiki locally