Categories | Question details Back To List | ||
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 Answer posted by Support on Apr 04, 2008 01:31 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. Answer posted by Support on Apr 04, 2008 01:32 |