posted @ 2012-10-25 20:38 Hamilton Tan 阅读(355) 评论(0) 推荐(0) 编辑
摘要:
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... 阅读全文
摘要:
http://www.xiazaiba.com/html/7678.html 阅读全文
posted @ 2012-10-25 14:03 Hamilton Tan 阅读(249) 评论(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 阅读(383) 评论(0) 推荐(0) 编辑
摘要:
请教一个问题,在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 阅读(406) 评论(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 阅读(309) 评论(0) 推荐(0) 编辑
摘要:
CRM4里获取字段的值是1.crmForm.all.字段名.DataValuevar xml = "" + "" + "" + " " + " " + " 0" + " crm4" + " 00000000-0000-0000-0000-000000000000" + " " + " " + " " + " " + " account" 阅读全文
posted @ 2012-10-22 20:56 Hamilton Tan 阅读(285) 评论(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 阅读(153) 评论(0) 推荐(0) 编辑
摘要:
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 阅读(573) 评论(0) 推荐(0) 编辑