I'm using the Dynamics CRM 365 Workflow Tools Solution to automatically update a rollup field on a parent record when child records are added. This seems to work fine, but one rollup value called 'tax' doesn't show up until I manually reload the subgrid page. I want to update the subgrid in the background when a record is added. I dont want to go into each record to update one value.
I have tried this to update the subgrid from parent side when a record i added.
function SubGridRefresh() {
var grid = Xrm.Page.getControl("MySubGrid");
if (grid) {
grid.refresh()
}
}
I have tested this as well
function Form_onLoad() {
setTimeout("refresh();", 2500);
}
function refresh() {
Xrm.Page.getControl("subGrid").addOnLoad(GridOnloadFunction);
}
var GridOnloadFunction = function () {
alert("Subgrid OnLoad occurred")
Xrm.Page.data.refresh(true);
};
*This post is locked for comments