You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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);functionstartPointFn(localization){// returns the localized text for localization ID "Cmd.Action".varactionText=MobileCRM.Localization.get("Cmd.Action");MobileCRM.bridge.alert(actionText);}