The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
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
ADAdministrator Syncfusion Team February 12, 2003 10:17 AM UTC
Try setting/unsetting the appropriate flags in the AllowSelection property.
IPIvan PellyFebruary 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
ADAdministrator Syncfusion Team February 12, 2003 04:51 PM UTC
Try this.gridDataBoundGrid1.Selections.GetSelectedRows(true);
Stefan
IPIvan PellyFebruary 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.
ADAdministrator Syncfusion Team February 12, 2003 10:44 PM UTC
Handle the CellClick event, then you can call gridDataBoundGrid1.Model.Selections.Clear();
Stefan