admin 发表于 2018-11-6 11:24:29

Aras 弹出标准 搜索窗口 开发过程

1、新建ItemType。




2、Form中插入按钮。




3、代码:var param = {  aras: top.aras,
  type: 'SearchDialog',
  dialogWidth: 700,
  dialogHeight: 450,
  itemtypeName: 'Supplier'
};

function callback(res) {
  if (res) {
    var itemNumber = res.keyed_name;
    alert("Supplier #" + itemNumber + " was selected");
  }
}

var topWnd = top.aras.getMostTopWindowWithAras();
var wnd = topWnd ? topWnd : window;
wnd.ArasModules.MaximazableDialog.show('iframe', param).promise.then(callback);
4、弹出效果为:


5、双击得到选择行的Keyed Name。

nono 发表于 2022-8-29 08:47:08

只有文字吗?
页: [1]
查看完整版本: Aras 弹出标准 搜索窗口 开发过程