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 that a user can be editing, and be currently editing a value in a particular cell.
Then the user selects a menu choice, which goes and reads the underlying datasource to do some action. The datasource does not contain the lastest changes to the cell currently being edited, since SaveCellInfo has not been called.
How can I programatically force a SaveCellInfo?
(I don''t really want to programatically move the current cell selection to do it)
Thanks!
ADAdministrator Syncfusion Team September 17, 2004 01:04 PM UTC
You can try
grid.CurrentCell.EndUpdate();
grid.Binder.EndUpdate();
The first call end the updating of teh currentcell and the second should flush any cached row changes to the datasource.
ADAdministrator Syncfusion Team September 17, 2004 01:05 PM UTC
Oops. I was thinking GridDataBoundGrid.
In a GridControl, calling grid.CurrentCell.ConfirmChanges should do the trick.