我尝试在我的 CRM 在线控件中的字段上添加事件
有我要添加的代码...但没有任何效果。有办法吗?
此代码在我的 formLoad 上执行
var issueKey = Xrm.Page.getAttribute("myControl").getValue();
if (issueKey != "") {
Xrm.Page.getControl("myControl").onClick = function () {
window.open(BaseUrl, "_blank");
};
}