我可以使用;
打开一个新的实体表单Xrm.Utility.openEntityForm("account");
我尝试过使用;
var features ="location = 1, status = 1,Popup,scrollbars=1, resizable=1, directories=1, toolbar=1, titlebar=1, width=600, height=600");
window.open("/main.aspx?etn=account&pagetype=entityrecord", "_blank", features, false);
但它不起作用,是否有更好的方法使用window.open
在具有设定大小的新窗口中打开新帐户表单?
由于
答案 0 :(得分:3)
根据the MSDN reference for openEntityForm,自版本7.1起支持它
Xrm.Utility.openEntityForm(name, id, paremeters, windowOptions);
^^^^^^^^^^^^^
最后一个参数应为{openInNewWindow: true}