提交 a2fdcd3d 编写于 作者: U unknown

修复数据网格删除最后一条数据保存后仍存在的问题

上级 dfbe9f8a
......@@ -1153,7 +1153,7 @@ MWF.xApplication.process.Xform.DatagridMobile = new Class({
this._setBusinessData(this.gridData);
return (this.gridData.data.length) ? this.gridData : null;
return (this.gridData.data.length) ? this.gridData : {data:[]};
}else{
return this._getBusinessData();
}
......
......@@ -1003,7 +1003,7 @@ MWF.xApplication.process.Xform.DatagridPC = new Class({
this._setBusinessData(this.gridData);
return (this.gridData.data.length) ? this.gridData : null;
return (this.gridData.data.length) ? this.gridData : {data:[]};
}else{
return this._getBusinessData();
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册