|
发表于 2024-2-1 10:04:20
|
显示全部楼层
您这个版本太旧了,this.form中还没有内置dialog方法。
您可以用这种方式
var dlg = o2.DL.open({
"title": "弹出框",
"width": "200px",
"height" : "300px",
"mask": true,
"content": new Element("div",{"text":"哈哈哈"}),
"container": this.page.getApp().node,
"positionNode": this.form.getApp().content,
"onQueryClose": function(){
}.bind(this),
"buttonList": [
{
"text": "关闭",
"action": function(){
dlg.close();
}.bind(this)
}
],
"onPostShow": function(){
dlg.reCenter();
}.bind(this)
}); |
|