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.
How do I go about forcing the selection to always be an entire row whenever the user tries clicking on a cell in the grid? Setting the AllowSelection property to "Row" doesn't seem to do the trick.
ADAdministrator Syncfusion Team September 5, 2003 08:47 AM
Use the ListBoxSelectionMode property on the grid.
Also, if you want the currentcell to look like teh rest of the selected row, subscribe to the CurrentCellActivating event, and set e.ColIndex = 0 in your handler.