Is there a method to set a whole column to readonly mode?
I’m looking for an fast way setting a checkbox column inactive.
You may use the onEditCell event:
mygrid.attachEvent("onEditCell", function(stage,rId,cInd,nValue,oValue){
if(cInd==checkbox_column){
return false
}
return true
});