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 have a virtual grid and the cellchangeevent is not triggered
his.grid.Model.CellsChanged += new GridCellsChangedEventHandler(grid_CellsChanged);
The grid_CellsChanged is never reached.
I change data through the QuerryCellInfo
ADAdministrator Syncfusion Team February 17, 2005 04:32 PM UTC
This event is only raised with something calls gridControl1.ChangeCells. This method will be called when your user makes a change in the grid or if some method retrieves a style by indexing the Model and changes this style.
If the only changes are done directly in your outside datasource, the grid will not raised CellChanged.
If you need to be notified when your outside datasource is changed external to the virtual GridControl, then you would have to look to your datasource to raise some event to notify listeners of the change.