-
on setting value to grid cell at onEditCell event function (stage 1), the cell becomes un-editable.
-
How to make the status of cell un-modified even after changing the cell value at onEditCell event function (stage 1, stage 2)
- on setting value to grid cell at onEditCell event function (stage 1), the cell becomes un-editable.
Please, try to use the following solution on the stage 1:
grid.attachEvent("onEditCell", function(stage,rId,cInd,nValue,oValue){
if(stage==1&&grid.editor&&grid.editor.obj){
this.editor.obj.value="----"
}
return true
});
- How to make the status of cell un-modified even after changing the cell value at onEditCell event function (stage 1, stage 2):
Please, try to use:
grid.cell(i,j).cell.wasChanged=false;