function doSomething(executionContext) {
var formContext = executionContext.getFormContext();
}
var subgridControl = formContext.getControl("ProductInventories");
if (!subgridControl) {
console.error("Subgrid control 'ProductInventories' not found using formContext.");
return;
}
console.log("Subgrid control 'ProductInventories' found using formContext.");
// Perform operations on the subgrid
}
function doSomething() {
var subgridControl = Xrm.Page.getControl("ProductInventories");
if (!subgridControl) {
console.error("Subgrid control 'ProductInventories' not found using Xrm.Page.");
return;
}
console.log("Subgrid control 'ProductInventories' found using Xrm.Page.");
// Perform operations on the subgrid
}
Stay up to date on forum activity by subscribing.
stampcoin
58
DS-11051211-0
20
MS.Ragavendar
9