|
var windowDialog = require("$UI/system/components/justep/windowDialog/windowDialog");
var w = new windowDialog();
w.set({
"title" : "临时",
"showTitle" : false,
"status" : "normal",
"resizable" : true,
// "width": {string} 对话框宽,支持css中所有的长度单位,如:200px、80%,缺省:80%
// "height": {string} 对话框高,支持css中所有的长度单位,如:200px、80%,缺省:80%
// "top": {string} 对话框上偏移,支持css中所有的长度单位,如:200px、10%,缺省:居中
// "left": {string} 对话框左偏移,支持css中所有的长度单位,如:200px、10%,缺省:居中
// "src" :
// require.toUrl("$UI/ERP/BID/BidCenter/process/select/wd_process_test.w"),
"src" : "$UI/ERP/BID/BidCenter/process/select/selectPerson_sng.w",
// "process" : {string} 打开.w使用的process,缺省使用当前环境的
// "activity: {string} 打开.w使用的activity,缺省使用当前环境的
"forceRefreshOnOpen" : false
});
w.open();
报错:
core.min.js:65 TypeError: Cannot read property 'on' of null
at n.open (comp.min.js:144)
at n.Model.mytestClick (mainActivity.js:459)
at n.fire (core.min.js:65)
at n.fireEvent (core.min.js:65)
at n.callParent (core.min.js:65)
at n.fireEvent (common.min.js:15)
at n._doClick (comp.min.js:144)
at HTMLAnchorElement.i (core.min.js:65)
at HTMLAnchorElement.dispatch (core.min.js:65)
at HTMLAnchorElement.g.handle (core.min.js:65)
|
|