- 注册时间
- 2013-8-3
- 最后登录
- 2016-3-26
- 阅读权限
- 10
- 积分
- 132
- 精华
- 0
- 帖子
- 25

|
mini.open({
url: "../webui/html/scrbbEditWindow.html",
title: "新增日报表数据",
iconCls:"icon-add",
width: 620,
height: 460,
onload: function() {
var iframe = this.getIFrameEl();
var data = {
action: "new"
};
iframe.contentWindow.SetData(data);
},
ondestroy: function(action) {
grid.reload();
}
});
设置了 iconCls:"icon-add",但是图标没有出现,问题在哪里?
|
|