While using CRM 2011, sometimes we may need to identify whether the user is using Microsoft Dynamics CRM for Microsoft Office Outlook client or not. The following javascript helps to find out the same.
if (Xrm.Page.context.isOutlookClient()) {
// true – Outlook client-do something
}
else {
//false -do something
}
No comments:
Post a Comment