Copy to clipboard

I’ve tried Copy to clipboard function…but it doesn’t permitt a double click editing…

is there a way to do that?



Thank u

There is no way to edit cell while you selection it with block selection.
In this example dhtmlx.com/docs/products/dht … ction.html cell editing is disabled by
mygrid.attachEvent(“onBeforeSelect”, function() {
return false;
});

so if i remove this 3 lines it should works…is it correct’

Yes, removing this event handler will re-enable editing for the grid.

OK…it works…

thank u very much