Crm 2011 : Refresh associated Grid View

后端 未结 3 1745
轻奢々
轻奢々 2021-01-24 05:04

Is there a way to refresh associated Grid View ? I have a Sales Order View on the Account Form, on this Form I have a button (New Order) that open a new Sales Order Form, in th

3条回答
  •  自闭症患者
    2021-01-24 05:58

    I have blogged about auto-refreshing a sub-grid in Microsoft Dynamics CRM.
    The solution is an unsupported customization, and basically boils down to this:

    document.getElementById("crmGrid").control.refresh();
    

    Replacing "crmGrid" with the div id of the sub-grid that is to be refreshed.

    As far as I know there is no supported way to do a refresh.

提交回复
热议问题