我有一个自定义对话框(网络资源),可通过window.open通过功能区按钮打开。
在此自定义对话框中,我使用window.open打开crm查找对话框。如果用户单击“确定”,我可以将“对话”窗口设置为焦点。
当用户单击“取消”时,我想聚焦对话框窗口。 有人可以帮我吗?
DialogOption.width = 500; DialogOption.height = 600;
var dialogWindow = this.crmWindow.Xrm.Internal.openDialog(lookupurl, DialogOption, null, null, (returnValue) => this.ngZone.run(() => {
this.lookupId = returnValue.items[0].id;
this.lookupText = returnValue.items[0].name;
window.focus();
}));