- 注册时间
- 2013-8-5
- 最后登录
- 2013-8-20
- 阅读权限
- 10
- 积分
- 164
- 精华
- 0
- 帖子
- 59
|
function onButtonEdit(e) {
var btnEdit = this;
mini.open({
url: "fee.toPrdType.do",
title: "多选业务类型",
width: 350,
height: 350,
onload: function () {
var iframe = this.getIFrameEl();
var data = { action: "toPrdType",ids:this.getValue()};
iframe.contentWindow.SetData(data);
},
ondestroy: function (action) {
if (action == "ok") {
var iframe = this.getIFrameEl();
var data = iframe.contentWindow.GetData();
data = mini.clone(data);
btnEdit.setValue(data.id);
btnEdit.setText(data.name);
}
}
});
}
树形结构页定义了
function SetData(data){
alert(data.ids);
if (data.action == "toPrdType") {
//显示行详细
//跨页面传递的数据对象,克隆后才可以安全使用
var o = mini.decode(data);
debugger;
tree.setValue(o);
//tree.setValue("forms");
}
}
为什么得不到ids
|
|