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,
If i want to select all cells in the same row each time i click on a cell of the row, do i have to code it ?
thanks
The GridControlList does this :-) but i want to do the same on my grid
ADAdministrator Syncfusion Team May 7, 2003 02:33 PM UTC
Set the ListBoxSelectionMode property on the grid to SelectionMode.One. This should select whole rows for you, but it will leave the current cell a different color than the rest of the row. If you do not want this behavior, handle the CurrentCellActivating event, and set e.ColIndex = 0 in your handler.