我正在使用Microsoft Dynamics CRM 2016.我的Lead表单上有一个description
字段,并且我添加了一个HTML Web资源。当我在CRM表单上输入description
值时,它应显示在我的HTML网络资源上。
如何实现这一目标?
HTML网络资源代码:
<html>
<head>
<script src="../ClientGlobalContext.js.aspx" type="text/javascript"></script>
<script text="text/javascript">
var description = Xrm.Page.getAttribute("description").getValue();
</script>
</head>
<body>
<table>
<thead><tr><th>Parameter</th><th>Value</th></tr></thead>
<tbody>
<tr><td>description</td><td id="description">null</td></tr>
</tbody>
</table>
</body>
</html>
然后在网络资源的属性中我有:
description