The selectrowtype of my grid is "Extended select w/Auto drag". When I select a range of rows, for instance 5 rows using auto drag. And then select one more row which is not in the range say...I select a row after 2 rows using ctrl + click.
When I programmatically see the number of selected rows...the count is 5. The last row I selected using ctrl+click is not part of that collection.
Is this a bug?
-N
neelimagangishetty said:When I programmatically see the number of selected rows...the count is 5. The last row I selected using ctrl+click is not part of that collection.
Hm, I tried this out and it works just fine for me. There must be some other property setting at work here that is causing interference.
Can you duplicate this in a small sample project and post it here so I can take a look?
The grid CellClickAction is set to RowSelect and SelectTypeRow is set to ExtendedAutoDrag
Okay, you are probably clicking on a cell instead of on the RowSelector. If you want clicking on a cell to select the row, you need to set the CellClickAction property to RowSelect.
Mike,
Looks like Ctrl +Click doesn't work, there are no selections when you ctrl+click on a row.
How do I make Ctrl+Click to work for selection?