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.
I encounter a problem when dealing with GridDataboundGrid.
I tried to set the 1st cell ( e.rowindex= 1 , e.colindex =1) to enabled= false where the celltype is "CheckBox" in the PrepareViewStyleInfo. But it is still enabled.
This only happen in the 1st cell.
ADAdministrator Syncfusion Team June 3, 2004 05:23 AM UTC
Does the grid have focus when your form first appears? If so, I suspect the problem is that cell 1,1 has already be set up to be the current cell before the PrepareViewStyleInfo is hit when the grid is being drawn. This means the style.Enabled = false does not take effect because cell 1,1 is already set to be the current one before it is drawn.
If this is the case, you can call grid.CurrentCell.MoveTo to explicitly position the currentcell initially to a cell that is enabled (maybe 1,2), or you can use this code so no cell is current when the grid first appears.
this.gridDataBoundGrid1.CurrentCell.MoveTo(-1, -1);