Selection in a Grid

Hi - When I click in the griddataboundgrid, and drag, a range of cells becomes selected, as in Excel. I'd rather have either: 1) just the cell under the mouse (as the dragging occurs) be the selection or 2) the entire row under the mouse comprise the selection (whichever is easier) Any suggestions? Thanks - Ivan Pelly

5 Replies

AD Administrator Syncfusion Team February 12, 2003 10:17 AM UTC

Try setting/unsetting the appropriate flags in the AllowSelection property.


IP Ivan Pelly February 12, 2003 03:29 PM UTC

I am using .AllowSelection = GridSelectionFlags.Row Or GridSelectionFlags.Shift Or GridSelectionFlags.Multiple, which works OK for now. Now how to I tell which rows are selected? Is there a collection of selected rows? Thanks


AD Administrator Syncfusion Team February 12, 2003 04:51 PM UTC

Try this.gridDataBoundGrid1.Selections.GetSelectedRows(true); Stefan


IP Ivan Pelly February 12, 2003 07:03 PM UTC

Thanks. Along the same lines, when I click on a recordselector, the row becomes selected. How would I have the grid de-select that row when the user clicks in a cell that's not in the current row? Thanks again.


AD Administrator Syncfusion Team February 12, 2003 10:44 PM UTC

Handle the CellClick event, then you can call gridDataBoundGrid1.Model.Selections.Clear(); Stefan

Loader.
Up arrow icon