我需要修改模型驱动应用程序中的表单格式,使其更具可读性/直观性。目前,表单如下所示:
我尝试使用网络资源创建一个简单的 HTML 表格,<script>
并Xrm.Page.getAttribute()
在计划列和实际列下提取相关字段,但这不起作用。我设置了依赖项并将其分配给正确的表单元素,但没有运气。我使用的代码是这样的:
<div>
<table>
<tr>
<td><u>Tasks</u></td>
<td><u>Planned</u></td>
<td><u>Actual</u></td>
</tr>
<tr>
<td>Task 1</td>
<td><script>Xrm.Page.getAttribute("[plannedField_1]")</script></td>
<td><script>Xrm.Page.getAttribute("[actualField_1]")</script></td>
</tr>
<tr>
<td>Task 2</td>
<td><script>Xrm.Page.getAttribute("[plannedField_2]")</script></td>
<td><script>Xrm.Page.getAttribute("[actualField_2]")</script></td>
</tr>
<tr>
<td>Task 3</td>
<td><script>Xrm.Page.getAttribute("[plannedField_3]")</script></td>
<td><script>Xrm.Page.getAttribute("[actualField_3]")</script></td>
</tr>
</table>
</div>
这是修改表单输出的有效方法,还是有另一种/更好的方法来做到这一点,不涉及使用动态脚本 HTML 创建精心设计的解决方案?