博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2012年10月25日

摘要: getcontactid.js 代码://window.onload = getGuid;function getGuid() { var selectValues; var sGuids = ""; if (window.dialogArguments) { selectValues = new Array(window.dialogArguments.length - 1); } else { alert("选择记录"); window.close(); } selectValues = window.dialo... 阅读全文

posted @ 2012-10-25 20:38 Hamilton Tan 阅读(333) 评论(0) 推荐(0) 编辑

摘要: http://www.xiazaiba.com/html/7678.html 阅读全文

posted @ 2012-10-25 14:03 Hamilton Tan 阅读(246) 评论(0) 推荐(0) 编辑

摘要: /*说明:获取产品配置方案明细分组类型参数:IsBeiji 是否备机,IsDonate是否赠送,IsService是否服务,IsBaseService是否基本服务,TypeCode产品类型值 输出:int1 正常销售产品2 备机3 赠送4 基本保修服务5 收费服务6 赠送服务7 赠送-其他公司产品注意:TypeCode 为产品配置方案明细中的 产品类型*/function getGroupTypeCode(IsBeiji, IsDonate, IsService, IsBasicService, TypeCode) { if ((!IsBeiji) && ... 阅读全文

posted @ 2012-10-25 13:59 Hamilton Tan 阅读(380) 评论(0) 推荐(0) 编辑

2012年10月24日

摘要: 请教一个问题,在CRM4.0 中列表上的按钮如果用Javascript 怎么给js方法传选中的值啊如图,点击打电话,想获得选中记录的ID答复一:可以参考CRM4.0 SDK中的例子:Walkthrough: Capturing the GUID Values of Records Selected in a GridWalkthrough: Capturing the GUID Values of Records Selected in a GridThis walkthrough describes how to capture the GUID values of records disp 阅读全文

posted @ 2012-10-24 23:50 Hamilton Tan 阅读(402) 评论(0) 推荐(0) 编辑

摘要: Form Scripting OverviewThe previous chapters discussed application programming interfaces (APIs) and server-side event options for Microsoft Dynamics CRM. In this chapter we will focus on the many events and programmatic possibilities available to you by using form scripting techniques.As you would 阅读全文

posted @ 2012-10-24 23:50 Hamilton Tan 阅读(307) 评论(0) 推荐(0) 编辑

2012年10月23日

摘要: ... 阅读全文

posted @ 2012-10-23 17:29 Hamilton Tan 阅读(274) 评论(0) 推荐(0) 编辑

2012年10月22日

摘要: CRM4里获取字段的值是1.crmForm.all.字段名.DataValuevar xml = "" + "" + "" + " " + " " + " 0" + " crm4" + " 00000000-0000-0000-0000-000000000000" + " " + " " + " " + " " + " account" 阅读全文

posted @ 2012-10-22 20:56 Hamilton Tan 阅读(281) 评论(0) 推荐(0) 编辑

摘要: typeof运算符介 绍:typeof 是一个一元运算,放在一个运算数之前,运算数可以是任意类型。它返回值是一个字符串,该字符串说明运算数的类型。你 知道下面typeof运算的结果吗?typeof(1);typeof(NaN);typeof(Number.MIN_VALUE);typeof(Infinity);typeof("123");typeof(true);typeof(window);typeof(document);typeof(null);typeof(eval);typeof(Date);typeof(sss);typeof(undefined);看 看你会几 阅读全文

posted @ 2012-10-22 20:43 Hamilton Tan 阅读(150) 评论(0) 推荐(0) 编辑

2012年10月13日

摘要: 1. int[][] nums ={new int[]{1,3,5,4}, new int[]{2,3,8,1}, new int[]{5,9,0,2}, new int[]{8,2,1,1}, new int[]{9,7,1,5}, new int[]{1,2,9,0}}; //在以上二维数组中,每个数组有4个整... 阅读全文

posted @ 2012-10-13 20:36 Hamilton Tan 阅读(568) 评论(0) 推荐(0) 编辑

2012年10月12日

摘要: 1. 简述 private、 protected、 public、 internal 修饰符的访问权限。答 . private :是一个成员访问修饰符。 私有访问是允许的最低访问级别。 私有成员只有在声明它们的类和结构体中才是可访问的。 protected :是一个成员访问修饰符。 受保护成员在其所 阅读全文

posted @ 2012-10-12 17:34 Hamilton Tan 阅读(285) 评论(0) 推荐(0) 编辑