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.
ADAdministrator Syncfusion Team March 17, 2004 10:19 AM UTC
If you mean not being able to drag individual cells and select them, then you can turn off the Cell flag in the grid.AllowSelections property.
this.gridControl1.AllowSelection = this.gridControl1.AllowSelection & ~GridSelectionFlags.Cell;
If you mean never seeing a currentcell, then try these properties:
this.gridDataBoundGrid1.ActivateCurrentCellBehavior = GridCellActivateAction.None;
this.gridDataBoundGrid1.ShowCurrentCellBorderBehavior = GridShowCurrentCellBorder.HideAlways;
If you mean the current cell not showing the same color as other cells in the row when you select the row, then try handling the CurrentCellActivating event, and setting e.ColIndex = 0 in teh handler.