Hi All,
You may have a type column with price and time it is read-only?
Thx.
Eric.-
Hi All,
You may have a type column with price and time it is read-only?
Thx.
Eric.-
you may try to use onEditCell event to deny editing of needed cell/column/row:
grid.attachEvent("onEditCell", function(stage,rId,cInd,nValue,oValue){
if(rId==id||cInd==index){
return false;
}
});