When using the copy-and-paste feature, I am able to paste clipboard contents into cells that are NOT editable, which is not a desirable behavior.
How can I prevent clipboard pasting from overwriting non-editable(excell type = ro) cells?
you can achieve expected behavior by next small code modification
dhtmlxgrid_selection.js , line 278
for (var j=startCol; j<endCol; j++) {
var ed = this.cells3(row, j);
if (ed.isDisabled()) continue; // this line need to be added