- 注册时间
- 2013-5-3
- 最后登录
- 2024-11-20
- 阅读权限
- 150
- 积分
- 32966
- 精华
- 0
- 帖子
- 14366
|
wanglu 发表于 2016-5-17 16:21
按快捷键 和 鼠标 出错提示,其他的单元格不能在编辑,确定返回出错的单元格那,出错的单元格就变成编辑时 ... - grid.on("cellcommitedit", function (e) {
- if (e.field == "age" && e.value > 30) {
- e.cancel = true;
- setTimeout(function(){
- grid.commitEdit();
- mini.alert("出错", "提示", function () {
- grid.beginEditCell(e.row, e.column);
- })
- },10)
- }
- })
复制代码 监听oncellcommitedit处理
你写的代码都是错误代码
|
|