Please help me to resolve this:
I am working on an Ultragrid that allows multi cells selection. Currently we I click on a cell, the whole row is selected/highlighted. I could then multi select rows, but can't select group of cells. The purpose of multi select cells is to implement copy and paste data to Excel. Please help. Thanks.
Have you done the following:
e.Layout.Override.AllowMultiCellOperations = AllowMultiCellOperation.All;
This feature was added in version 6.1 and you can find more information about it in the online documentation. I went to the What's new in version 6.1 section to look there first.
Nick
Thank you Nick. I changed some Override properties and now I can select a particular cell. But is there a way to multi select cells by dragging the cursor? Something similar to the Excel. I tried changing AllowMultiCellOperations to All and that doesn't help multi selecting cells.