与dhtmlxGrid的onEditCell问题

时间:2017-06-09 11:04:16

标签: grid cell editing dhtmlx

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

我尝试了两种方法,但它们都不起作用!我无法通过“true”确认编辑,也无法通过“newValue”设置值。

这是我的代码:

setlocale

任何人都可以解释我的错误或是否有错误?

1 个答案:

答案 0 :(得分:1)

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

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