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.
We are using the gridDataBoundGrid_RowLeave event procedure in our application to perform numerous calculations and run various loops within this event procedure.
The gridModel_QueryCellInfo Event is interfering
with the RowLeave Event. Is there a way to stop the gridModel_QueryCellInfo Event from fireing every time I run my code .
ADAdministrator Syncfusion Team May 6, 2004 04:39 PM UTC
QueryCellInfo (or its equivalent in our baseclass) is how the grid gets the data from the DataSource. So, if QueryCellInfo does not fire, you would have no data to use in the grid.
Exactly how is QueryCellInfo interfering with your code in RowLeave? (If you RowLeave code requests a value from the grid, QueryCellInfo will be triggered. If you do not want this, do not request a grid value. Instead, get the value directly from your DataSource, not going through the grid.)