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 ,
We are using Sync Fusion 1.6 dlls in our application .
We are using GridDataBoundGrid. We are displaying a drop down as one of the columns. Depending on one of the parameters being displayed , we need to prevent the drop down for that particular row to be edited , ie , can you explain us how to implement conditional disabling of rows in a grid data bound grid.
Your help will be very valuable to us.
Thanks and Regards,
Jaya
ADAdministrator Syncfusion Team December 6, 2004 12:01 PM UTC
Try handling the grid.Model.QueryCellInfo event. In your handler, if e.RowIndex and e.ColIndex point to a cell that you may want to disable, then check the criteria you are using, and then conditionally set e.Style.Enable = true or false based on this criteria. (If you need the value for the cell at e.RowIndex, e.COlIndex, then get it from e.Style.CellValue. If you need values for other cells, then you can get them using an indexer on the grid.)