- 注册时间
- 2016-11-15
- 最后登录
- 1970-1-1
- 阅读权限
- 10
- 积分
- 24
- 精华
- 0
- 帖子
- 4

|
zxczpcbmanagerForm.on("cellbeginedit",function(e){
if (e.field == "stask") {
var editor = e.editor;
var stask = e.record.stask;
//e.cancel = true;
mini.open({
url: "/TBPWeb/app/dispatch/czpManager/ddzxmpczp_cb_czrw.jsp",
title:"操作项目填写",
width: 450,
height: 280,
onload: function () {
},
ondestroy: function (action) {
if (action != "cancel") {
e.value=action;// 此处为何没法设值进去,e对象是否失效,是否有其它方式在这里设值
}
}
});
}
});
|
|