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
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.