为 Web 应用程序中使用的窗体编写的脚本也应该适用于用于手机和平板电脑的 Dynamics 365,但存在一些差异. 通常,对于移动应用程序无效的方法不返回错误,但是它们也不返回任何值. 开发人员可以使用以下条件语句来划分在移动应用程序中将无法正常工作的代码: JavaScript if (Xrm.Page.context.client.getClient() != "Mobile") { // Add code that should not run in CRM for ph…
关注本人微信和易信公众号: 微软动态CRM专家罗勇 ,回复244或者20170306可方便获取本文,同时可以在第一间得到我发布的最新的博文信息,follow me!我的网站是 www.luoyong.me . 为了方便说明,我首先创建一个自定义工作流活动,使用的代码如下. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Activities;…