dhtmlGrid - copying label names in rows by ctrl+c

hi,

This is wth reference to the previous question. Thanks for your quick reply. You given me the reply at



dhtmlx.com/docs/products/kb/inde … 186&a=2725



As you said



1. In dhtmlxgrid.css locate and erase all occurences of next line

-moz-user-select:none;

2. In grid initialization code add next command

grid.entBox.onselectstart = function(){ return true; };



(1) was done & (2) I done as



mygrid = new dhtmlXGridFromTable(tableName);        

        mygrid.setImagePath("./JavaScript/dhtmlgrid/imgs/");

        mygrid.enableColumnMove(true); // Added for column move.

        mygrid.enableColumnAutoSize(true) // Added for column resizing on Double Click.            mygrid.init = function(){

        mygrid.entBox.onselectstart = function(){ return true; };

        };



Even then I am unable to copy the labels or any content from the rows of the dhtmlGridTable



Please help me out as this option is really requied for our application in InvoiceSearch by copying the InvoiceNo from the grid



thanks & best regards

satya.challa





Please check attached sample - it uses same approach and data normally selectable ( and can be copied to buffer by ctrl-c )

If problem still occurs for you - please send any kind of sample where problem can be reconstructed to support@dhtmlx.com

1204552888.zip (38.1 KB)