dhtmlxGrid 的 onEditCell 问题

onEditCell issue with dhtmlxGrid

我正在使用 dhtmlxGrid,正如我在文档 (https://docs.dhtmlx.com/api__dhtmlxgrid_oneditcell_event.html) 中发现的那样,返回 "true" 确认编辑,而值(例如 newValue)设置值。

两种方法我都试过了,但是都不行!我无法通过 "true" 确认编辑,也无法通过 "newValue" 设置值。

这是我的代码:

myGrid.attachEvent("onEditCell", function(stage,rId,cInd,nValue,oValue){
doOnEdit(stage,rId,cInd,nValue,oValue)
});
...
function doOnEdit(stage,rId,cInd,nValue,oValue){
if (cInd==0 && nValue=="100")
return false
return true
 }

任何人都可以解释我的错误或者有错误吗?

请尝试使用以下解决方案:

myGrid.attachEvent("onEditCell", doOnEdit);
...
function doOnEdit(stage,rId,cInd,nValue,oValue){
   if (cInd==0 && nValue=="100")
   return false
   return true
}