PowerApps:使用 HTML 修改模型驱动应用程序中的表单显示?

PowerApps: Use HTML to modify form display in model-driven apps?

我需要修改模型驱动应用中的表单格式,使其更加readable/intuitive。目前,表单如下所示:

我尝试使用网络资源创建一个简单的 HTML table 并使用 <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>

这是修改表单输出的有效方法吗,或者是否有 another/better 不涉及使用动态脚本 HTML 创建精心设计的解决方案的方法?

取消选中其中一个控件的 Display label on the form