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 an order entry grid (GridDataBoundGrid) where several cells on each line determine the line value total. The line value total column is a calculated DataColumn.
I have been using grid.CommitChanges() to automatically update the line total when these values change, but this seems to interfere with my current cell activation style which is to select all text. When I call CommitChanges, select all text seems to stop working.
Is there an alternative to CommitChanges I could use?
Tim.
ADAdministrator Syncfusion Team January 30, 2004 06:40 AM UTC
You can use grid.CurrentCell.ConfirmChanges to save the changes on the currentcell.
Additionally, you can call grid.Binder.EndEdit to flush all the changes on the current row to the datatable (essentially doing a CurrencyManager.EndEdit call on the current object).
ADAdministrator Syncfusion Team January 30, 2004 06:50 AM UTC