copy grid column?

Sir,



I think it is possible in dhtmlXgrid to select and copy(toclipboard) multiple cells under a particular column .I dont know how to implement this.Please help me.





Thanks

Santhosh R

The “block-selection” allows to select any area in grid and copy its content to clipboard.

To enable block selection
    grid.enableBlockSelection(true);
To copy current block selection in clipboard
    grid.copyBlockToClipboard();

There is no built-in API for selecting whole column.

dhtmlx.com/docs/products/dhtmlxG … 7298932000