简体   繁体   English

在 Dynamics 365 CRM 统一界面中重新加载/刷新子网格时重新加载表单

[英]Reload Form on reload/refresh of subgrid in Dynamics 365 CRM Unified Interface

I have a scenario where in Orders Form there is a Invoice Schedule Sub-grid .我有一个场景,在Orders Form 中有一个Invoice Schedule Sub-grid I need to Refresh/Reload the Main Form when the Invoice Schedule Sub-grid is reloaded on Deactivating a particular record in the Sub-grid.当在取消激活子网格中的特定记录时重新加载发票计划子网格时,我需要刷新/重新加载主表单

PS: This scenario is for Dynamics 365 CRM Unified Interface (UCI). PS:此方案适用于 Dynamics 365 CRM 统一接口 (UCI)。 I have tried all the three Sub-grid events but does not help in this scenario.我已经尝试了所有三个子网格事件,但在这种情况下没有帮助。

You have to attach a custom event handler to deal this.您必须附加一个自定义事件处理程序来处理此问题。 Read more 阅读更多

var globalFormContext;

function myFormOnload(executionContext) {
  globalFormContext = executionContext.getFormContext(); 

  addSubgridEventListener();
} 

function addSubgridEventListener(){
  var gridContext = globalFormContext.getControl("<your_subgrid_name>");
  //ensure that the subgrid is ready…if not wait and call this function again
  if (gridContext == null){
     setTimeout(function () { addSubgridEventListener(); }, 500);
     return;
  }
  //bind the event listener when the subgrid is ready
  gridContext.addOnLoad(subgridEventListener);

}

function subgridEventListener(context){
  globalFormContext.data.refresh(false);
}

This latest code verified and works in v9 unified interface Reference: https://docs.microsoft.com/en-us/powerapps/developer/model-driven-apps/clientapi/reference/grids/gridcontrol/addonload此最新代码已验证并在 v9 统一界面中工作 参考: https : //docs.microsoft.com/en-us/powerapps/developer/model-driven-apps/clientapi/reference/grids/gridcontrol/addonload

Code snippet:代码片段:

//On load of main form event
function OnloadOfMainForm(executionContext) {
// call onLoad of subgrid function
  SubgridEventHandler(executionContext);
} 

var globalFormContext;
function SubgridEventHandler(executionContext){
//make formContext as global
  globalFormContext = executionContext.getFormContext(); 
  var gridContext = globalFormContext.getControl("subgrid_name");

  //Verify the subgrid is loaded, if not recursively call function again
  if (gridContext != null && gridContext != undefined){
      //don't try to pass formEontext some time it doesn't works
      gridContext.addOnLoad(SubgridFunctionExe);
     }else{
        setTimeout(function () { SubgridEventHandler(); }, 200);
     }
}

//It triggers onLoad of form, on load and on refresh of subgrid
//as well on add new record and on delete of record it will trigger
function SubgridFunctionExe(){
// here use globalFormContext
  globalFormContext.data.refresh(false);
}

对于 UCI:从功能区按钮传递 PrimaryControl 的参数并使用以下代码刷新。

PrimaryControl.refresh();

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM