Categories | Question details Back To List | ||
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 Answer posted by dhxSupport on Oct 20, 2009 06:09 There is no way to edit cell while you selection it with block selection. In this example http://www.dhtmlx.com/docs/products/dhtmlxGrid/samples/02_clipboard/01_grid_selection.html cell editing is disabled by mygrid.attachEvent("onBeforeSelect", function() { return false; }); Answer posted by Ray on Oct 20, 2009 06:20 so if i remove this 3 lines it should works...is it correct' Answer posted by Support on Oct 20, 2009 07:45 Yes, removing this event handler will re-enable editing for the grid. Answer posted by Ray on Oct 20, 2009 08:14 OK...it works... thank u very much |